How can I skip forward testing for a pass that did bad in back testing?

 
How can I skip forward testing for a pass that did bad in back testing? Is there some way to code something that, when it is doing the forward testing, checks to see how the pass did in back testing? And if it isn't above a certain threshold, it skips it to go faster.
 

You can try ExpertRemove() if the balance falls under ....

Maybe the backtest with the forward test is stopped.

Documentation on MQL5: Common Functions / ExpertRemove
Documentation on MQL5: Common Functions / ExpertRemove
  • www.mql5.com
ExpertRemove - Common Functions - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
 
Clarify your "bad" conditions, code them and code TesterStop() command.

In that way the tester will stop once your conditions are met, saving precious time.

Don't use ExpertRemove(), read documentation to understand why.