Available For Only Strategy Tester

 

Hi,

Could you please tell me what should i do to make an EA available for only strategy tester?

Where and what  should i add to the source code?

Thanks...

 
beyhan dinc:

Hi,

Could you please tell me what should i do to make an EA available for only strategy tester?

Where and what  should i add to the source code?

Thanks...

if (IsTesting())
{
   // Do something
}
else
{
   // Do nothing
}
 
Stuart Browne:

Thank you very much.

Best Regards...

 
beyhan dinc:

Thank you very much.

Best Regards...

Very welcome ;-)
Reason: