While doing backtest (so calc on bar close = true) I have my own custom data series, and I'd like to look at an indicator value based on it after setting the custom ds current bar value to a value I choose.
So, for custom data series ds, I have
SMA(ds,14)
and I set
ds.Set(myval)
but SMA(ds,14) doesn't change. Is there any way I can get it to recalculate?
thanks
Dave

Comment