Strategy Tester and Sleep

 
sleep is ignored in strategy testing.

datetime nextRun;
 
int start() {
    if( nextRun > TimeCurrent() ) return(0);
    nextRun = TimeCurrent() + 900;
 
    //...<Your usual start codes>...
}
 
Thank you very much
Reason: