in Strategy analyzer, i see that strategy violates this condition and opens long when fast is below slow ema.
I implementeed 1 tick graniluity and placing orders at barsinprogress == 1 and my stategy uses multi timeframe
AddDataSeries(Data.BarsPeriodType.Tick, 1)
in my dataloaded
else if (State == State.DataLoaded)
{
ClearOutputWindow(); //Clears Output window every time strategy is enabled
fastEMA = EMA(FastEMAPeriod);
slowEMA = EMA(SlowEMAPeriod);
}
Do i need to implement something else in order that fast and slow ema conditions woulb be met in strategy analyzer?

Comment