View Single Post
  #2 (permalink)  
Old 01-02-2006, 05:26 PM
fxid10t's Avatar
fxid10t fxid10t is offline
Member
 
Join Date: Sep 2005
Location: MidAtlantic USA
Posts: 71
fxid10t is on a distinguished road
Red face try this maybe?

Code:
// close all open and pending orders
void closeAllOrders()  {
   for(int c=0;c<OrdersTotal();c++) {
      OrderSelect(c,SELECT_BY_POS,MODE_TRADES); 
         if (OrderType() == OP_BUY)  {
            OrderClose(OrderTicket(), OrderLots(),Bid,3, Red);  }
         if (OrderType() == OP_SELL)  {
            OrderClose(OrderTicket(), OrderLots(), Ask,3, Red);  }   
         if (OrderType() > 1)  { OrderDelete(OrderTicket()); }
   }
} // end closeAllOrders()
__________________
"You should not have a favourite weapon. To become over-familiar with one weapon is as much a fault as not knowing it sufficiently well. You should not copy others, but use weapons which you can handle properly. It is bad for commanders and troopers to have likes and dislikes. These are things you must learn thoroughly." Miyamoto Musashi
Reply With Quote