Backesting using 'Tick data from Server'
Created at 22 Feb 2022, 18:53
Backesting using 'Tick data from Server'
22 Feb 2022, 18:53
When backtesting a cBot strategy using Tick data from Server option it will wait for every tick to be processed (no matter how much time it will take) until moving forward to the next tick?
amusleh
23 Feb 2022, 08:47
Hi,
What do you mean by it will wait for every tick to be processed?
When a new tick comes the cBot OnTick method will be called, and anything inside that method will be executed, the method will not be called again for another tick until the current execution finish.
@amusleh