Closing all trades

 

Hi.


I have this small problem. I have created an EA that closes all open trades when it hits a certain profit or loss and it is working fine but when i opened 200 trades then activate it when it hits 2000 profit, it only closes by batch but not all using this code.


for(int x=0;x<OrdersTotal();x++)
{
  if(OrderSelect(x,SELECT_BY_POSITION)==true)
  {
     OrderClose(OrderTicket(),OrderLots(),OrderClosePrice(),0,clrNONE);
  }
}

do you have any best solution for this one?
 
raven.chrono:

Hi.


I have this small problem. I have created an EA that closes all open trades when it hits a certain profit or loss and it is working fine but when i opened 200 trades then activate it when it hits 2000 profit, it only closes by batch but not all using this code.



It's been mentioned so many times on this forum already

COUNT DOWN WHEN CLOSING ORDERS 

for(int x=OrdersTotal()-1;x>=0;x--)

 I expect WHRoedor will be along with a link that will explain why soon.

 
Reason: