Inside a tick strategy, indicators added to the chart appear to be using calculate on each tick which I guess makes sense.. Is there a way to change them to use on bar close?
Or does one just have always work with the previous bar, to accomplish this, ex:
if (IsFirstTickOfBar)
{
// Perform operations on the now previous bar [1]
if (ema(12)[1] > sma(50)[1])
// Do stuff
}

Comment