Ok it appears that Last month doesn't have any ticks!

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi everyone!
I can't figure why I have no ticks in my strategy tester
For example, if my EA is:
int OnInit()
{
return(INIT_SUCCEEDED);
}
void OnDeinit(const int reason)
{
}
void OnTick()
{
Print("HelloTick");
}
And then I start the strategy tester with it (keeping all settings by default, just changing date to Last Month), nothing is printed. In the log I can read:
"Tester 4386 Mb memory used including 0.94 Mb of history data, 0 Mb of tick data"
Any advice?
Thanks!