Change Strategy Tester Speed (between 31 and 32)?

 

Is there any way to change the strategy tester speed to something between 31 and 32 in visual mode?

31 is a bit slow, 32 is too fast.

 
Nope, but you can stop the tester (press pause key) or programmatically
 

Thank you WHRoeder!

I decided just to manage the speed through a simple for loop in the OnTick() function:

int speedSlowness = 1000000; // intended for 32 speed, adjust as desired

void OnTick() {
   for(int i=0; i<speedSlowness; i++){
   }
}
 
and is there a way to programmatically move the EA to the beginning of the next bar/candle, closing the current one?
 
Stop using the loop during the bar.
 
nikolaygmt:

Is there any way to change the strategy tester speed to something between 31 and 32 in visual mode?

31 is a bit slow, 32 is too fast.

Don't use every tick but Open Price for the Testing Modell
 

sorry, better description of the imagined scenario: I am using "every tick" model and "visual mode" and I want to programm the following: If I press a key the current bar closes and the next bar opens. Is this possible?

I want to have both options of 1) watching the tick movement at my desired speed, and 2) when I want to just skip bars by pressing a key.

Reason: