tester...

 
hello everyone

In MT4

In the tester is it possible to automatically eliminate some tests optimization?


For example: In an EA I have the option to use (true) or not (false) the parameter "traillingstop."
With TS = true, the tester evaluates the parameter "distance". ok
But with TS = false, "distance" is useless.

Is it possible to automatically not evaluate "distance" if TS = false?

Or I have to do two separate test.
-1st: TS = true and "distance"

-2nd: TS = false but not "distance"?

Thank you in advance and sorry for my bad english (I need to improve myself !!!) 

 
If TS == false have OnInit return INIT_PARAMETERS_INCORRECT when distance is not minimum to skip them.
 

hummm ... if TS == false, distance is okay, but useless : Time wasting.

I'll look OnInit ().

Thank you.

 

 

Ultimately two separate tests reveal best parameters hidden by genetic algorithm !!!

good to know
 
that's pretty interesting thank you