StratagyTester Improvement

 
Looking at debug output on the Journal tab while trying to stop and continue EA execution on the Settings tab is most inconvenient. It would be very advantageous to combine these two functions on a single tab. What are your thoughts?
 
rfgullett:
What are your thoughts?
Use the Pause key.
 
The Pause key is not on the Journal tab.
 
rfgullett:
The Pause key is not on the Journal tab.
I know . . . it's on the keyboard . . . that thing in front of you with lots of buttons on it.
 
Ahhhh! That Pause key.
 
rfgullett:
Ahhhh! That Pause key.
Yep, that is why I said Pause Key and not Pause button ;-)
 

Pause key for the tester. Expert Advisors button live.

You can also programatically press the pause key (see my code)

static int ooc; if (ooc != OrderCount()){ ooc = OrderCount(); pauseTest(); } // Order opened or closed.

Also once paused you can also send single ticks to start (via F12 I think)

Reason: