[MT4指标]关闭所有空单
关闭所有空单//+------------------------------------------------------------------+
//| Close Open Sell.mq4 |
//| Copyright ? 2007, GwadaTradeBoy |
//| [email protected] |
//+------------------------------------------------------------------+
#property copyright "Copyright ? 2007, GwadaTradeBoy"
#property link "[email protected]"
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);
}
//+------------------------------------------------------------------+