Im using Calculate OnClose, so basically without the need to 1 tick data series, candles already can operate on OHLC without any problem
and I understood from your doc that while using OnClose the candle 0 is the candle that just closed and not the candle that is currently forming, that's EXACTLY what i base my entry on and it operates perfectly on playback, but when i put it to work on backtest or on realtime live account, it gives me some straaange entry levels.
my strategy is trading candle colors change breakouts, plz check the attached image
here is the code i use to verify that i have a potential bullish entry
if (Open[1] > Close[1] && Close[0] > Open[0] && Close[0] > High[1])

Comment