I'm adding additional time series to my ninjascript using the following line..
Add(Instrument.FullName, PeriodType.Minute, 5, MarketDataType.Ask);
When the period value is small, like 5 or 10, my script runs successfully in Backtest.
However if I raise the period to be 1440 then my script does not run successfully. In backtest it finishes with no trades

Is there a upper limit on the Period length when using Add() ?
Comment