I'm just suggesting you do something similar to what I’ve implemented in my indicators, or I can do it for you—whatever you prefer.AlgoAlex811 wrote: Sun Jun 28, 2026 12:12 am All the signals are calculated on the last bar closed:and they have write-once logicCode: Select all
if(prev_calculated > 0) start = prev_calculated - 1;so don't take for good a signal on the live bar, wait for the next bar on your current timeframe.Code: Select all
if(prev_calculated == 0 || shift == 0) { BuySignalBuffer[shift] = EMPTY_VALUE; }
But wait,you probably were referring to the slider in the first WR's dashboard :-) that was a good one, but now the signals are quite more complex so there would be multiple "values" to be visualized (and I can't even imagine how to put them in a visual form!).
Attachments forums
Re: Wave Rider - or about pullback trading
Dimkin, Sun Jun 28, 2026 4:44 am