I test my strategy in Strategy Analyzer and use NQ instrument, 1 minute timeframe, a period from Jan 1st 2018 to today (May 18th 2024). If I don't use TickReplay mode I get all historical data within specified period. If TickReplay option is checked then historical data before april 2023 is not available for some reason...
I use the follwing code to debug it.
protected override void OnBarUpdate()
{
if (CurrentBar == 0 && IsFirstTickOfBar)
{
Print(Time[0]);
}
// The strategy logic is here
}
If TickReplay is ON there is 2023-04-06 4:01:00 AM value in Output window. What is incomplete data.
Are there any limitations on the size of historical data in TickReplay mode?
