Troubleshooting
When something on the chart looks wrong, the first question worth asking is not "is this tool broken?" It is "is this the tool operating as documented, or did I configure something unexpected?" Most of the time, on mo...
Written By Axiom Admin
Last updated 22 days ago
Troubleshooting
When something on the chart looks wrong, the first question worth asking is not "is this tool broken?" It is "is this the tool operating as documented, or did I configure something unexpected?" Most of the time, on most indicators, the answer is the second one. This page is built around that distinction.
Before you diagnose
Two habits save an enormous amount of time in a diagnostic session:
Read the indicator's status bar. TradingView surfaces runtime errors in a small strip below the chart. If the chart goes blank and that strip has a red message, the message is usually the fastest path to the fix.
Reset to defaults, then change one thing at a time. If you cannot name the configuration that produced the unexpected behaviour, it is very hard to reason about which knob caused it. Reset, reproduce, and change one input to isolate the cause.
With those in hand, the table below walks the most common symptoms.
Symptom to cause to fix
Errors, limits, and misreads β three categories
When you are in a diagnostic moment, it helps to know which of three categories your symptom belongs to:
1. Configuration errors
The indicator is refusing a configuration that would otherwise quietly produce a wrong answer. There is exactly one of these on the Base trim today: the slot-timeframe guard.
Surface. Runtime error in the TradingView status bar naming the slot. Chart does not render.
Cause.
TimeFrame:set below the chart timeframe on a slot.Fix. Raise that slot's
TimeFrame:.
This is never a bug in the indicator. It is the indicator protecting you from a misconfiguration. Treat the error as a prompt, fix the input, and move on.
2. The tool operating as documented
The chart is doing what the documentation says it should do, but the behaviour is unexpected because an input or interaction was forgotten. This is the largest category by volume and includes:
The blended band shifting under a hidden but enabled slot.
Alignment alerts not firing during partial agreement.
A slot's lines stepping only at higher-timeframe bar close under
On Bar Close?ON.A slot's lines drifting during a live higher-timeframe bar under
On Bar Close?OFF.A per-slot basis-trend alert flickering under a very short
Basis Trend Length:.Early chart bars with zero-looking slot or blend values because warm-up
navalues are converted withnz(...).
None of these are defects. They are the documented behaviour of inputs the reader either forgot about or did not realise applied in this situation. The fix is rarely mechanical; the fix is usually to re-read the section of the manual that covers the setting involved.
3. Real limits of the Base trim
The reader wants a feature the Base trim does not ship. The three largest cases:
Cross-ticker bands. Not available on this trim at all; the CTX trim exposes them.
Per-slot repaint control. Global-only on this trim; per-slot on CTX.
Pro-library moving-average parameters. Not exposed on this trim; Pro library is used by CTX.
These are not troubleshooting problems. They are scope boundaries. If one of these is what you need, the correct move is to switch trims, not to work the Base trim harder.
A short diagnostic sequence you can run
When a chart looks wrong and you cannot immediately name why:
Check the status bar for a runtime error. If there is one, read the slot name in the message and check that slot's
TimeFrame:.Note the current state of
On Bar Close?. If you are seeing live redraw on past chart bars, flip it to ON and watch the behaviour change.Look at the
Hide BB 0N Plottoggles for every slot. If any is on, consider whether that hidden slot is what is moving the blend or silencing alignment.Look at
Blended Weight:for every enabled slot. Zero-weight slots are visible but do not steer the blend. Non-zero-weight slots do.Look at
Basis Trend Length:on each slot where the trend state matters to the question you are asking. A very short value on a slow timeframe will flicker.If you still cannot reproduce the expected behaviour, reset to shipped defaults and re-introduce your changes one at a time.
If after that sequence the chart still looks wrong, and you can name the configuration that produces the behaviour, the next step is the support channel rather than the input dialog. A placeholder support destination for this pack will be filled in before publication; until then, the behaviour you are seeing is almost certainly covered by one of the sections above.
A note on diagnostic fluency
The symptoms that feel most urgent on the first encounter β the chart going blank, a line visibly drifting on a past bar, an alert that appears to have missed the obvious β stop feeling urgent once you have seen each of them on purpose. That is why the verification drills in Quick Start, MTF and Repainting, and For the Geeks are written as something to do, not just as something to read. Fluency with a tool is largely the memory of having watched it behave exactly as documented in a case you triggered yourself. The reader who has watched On Bar Close? flip live once is a reader who will not mistake a repaint behaviour for a bug at two in the morning. The reader who has run the blend-rule verification once will not be convinced by a colleague who claims the composite is "smoothed" or "optimised" β neither of those is what the rule does, and the reader has seen that firsthand. Every minute spent in deliberate verification is minutes saved in panic diagnosis later.