Possible to skip the current day in backtesting ?

 

Hi Folks,

lets say my EA is only trading from 1am to 2am. Is there a way to jump to the next day ? (The rest of the day does not need to be processed.)


Regards

Thomas

 
void OnTick(){ 
   if( Hour() != 1) return;
   ⋮
 


William Roeder #: Hi William, thanks. That did the trick! Regards Thomas

Reason: