Close Open Sell

Author: Copyright � 2007, GwadaTradeBoy
Close Open Sell
Orders Execution
Checks for the total of open ordersIt Closes Orders by itself
1 Views
0 Downloads
0 Favorites
Close Open Sell
//+------------------------------------------------------------------+
//|                                              Close Open Sell.mq4 |
//|                                  Copyright © 2007, GwadaTradeBoy |
//|                                           gwadatradeboy@yahoo.fr |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, GwadaTradeBoy"
#property link      "gwadatradeboy@yahoo.fr"

int total = 0, cnt = 0;
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
int start()
   {
//----
      total = OrdersTotal();
      for (cnt = total ; cnt >=0 ; cnt--)
               {
                  OrderSelect(0,SELECT_BY_POS,MODE_TRADES);
                  if(OrderType()==OP_SELL)
                     OrderClose(OrderTicket(),OrderLots(),Bid,5,Violet);
               }
//----
      return(0);
   }
//+------------------------------------------------------------------+

Comments