Experts: Wipeout

 

Wipeout:

Closes all orders when total cash profit in the account is a certain value.

Author: Tonny Obare

 

Where is your code, Dude ?

 

Can't be used this way....

If there are more then one trades to close it will fail.

It is trieing to close all the trading pairs at prices for the symbol the EA is attached

 
Tradefx19:

Where is your code, Dude ?


Scrap the code and start over--redundancy, unnecessary coding and function calls, and coding will not produce accurate results.
 

Counting up in a loop where you delete or close orders will mean you miss some of the orders . . .

  for(int i=1; i<=OrdersTotal(); i++)          // Cycle searching in orders

 More info here:  Loops and Closing or Deleting Orders

Reason: