Does this repaint?
The global On Bar Close? switch decides. ON returns the previous confirmed higher-timeframe bar's values, which will not repaint. OFF returns the live higher-timeframe bar and can repaint until that bar closes. Alerts are bar-close gated either way, so even on OFF an alert cannot fire mid chart bar. If alerts matter, stay ON.
One of my slots didn't show up — what happened?
Its timeframe is most likely below the chart timeframe. The script raises a named runtime error in that case because pulling a lower-timeframe value into a higher-timeframe chart returns misleading output. Raise the slot's timeframe, or drop the chart timeframe.
Is the blended band a smarter Bollinger Band?
No. It is a weighted average of the slots that are enabled at the weights they were given. It inherits the quality of those choices, including the bad ones. Treat it as a compact reference while the underlying slots are still on the chart for inspection.
Can I alert on band touches or band crossings?
Not from this indicator. The published alerts cover per-slot basis trend, the blended basis trend, and alignment across all enabled slots. Touch, cross, squeeze, and reversion logic are not part of the surface and would have to be built downstream from the slot plots.
Do I need CTX or STR if I already use this one?
Probably not, unless the actual work calls for another version's surface. CTX opens ten slots with cross-symbol pulls, per-slot timing, and per-family MA controls. STR sits after CTX where it exists and adds structure around the blended output while carrying fewer slots. If three slots, a single symbol, and a global timing switch are doing the job, Base is the right version.