//+------------------------------------------------------------------+ //| Close_All_Open.mq4 | //| (c) 2007 Investatech Inc., www.investatech.com | //| http://www.investatech.com | //+------------------------------------------------------------------+ #property copyright "(c) 2007 Investatech Inc., www.investatech.com" #property link "http://www.investatech.com" #property show_inputs #include //+------------------------------------------------------------------+ //| script program start function | //+------------------------------------------------------------------+ int start() { //---- for (int i=0;i<5;i++) { int total_trades=OrdersTotal(); if (total_trades==0) { Alert("Job Done! Visit http://www.pipboxer.com"); return(0); } for(int j=0;j=OP_BUYLIMIT) OrderDelete(order_ticket,CLR_NONE); //close sell orders if (order_type==OP_SELL) OrderClose(order_ticket,order_volume,MarketInfo(order_symbol,MODE_ASK),3,CLR_NONE); //close buy orders if (order_type==OP_BUY) OrderClose(order_ticket,order_volume,MarketInfo(order_symbol,MODE_BID),3,CLR_NONE); } } } total_trades=OrdersTotal(); if (total_trades>0) Alert("Something went wrong! Repeat the script."); //---- return(0); } //+------------------------------------------------------------------+