Script for opening a market order at the pre-set time
The Script will set specified orders with predetermined stop-losses and at the pre-set time. If the pre-set time doesn’t exceed the current time, then the orders will be placed at once. You can set both Buy and Sell orders and in a number specified in the “MaxOrders” parameter.
The Script inputs:
extern int stoploss = 50, //уровень выставления SL, если 0, то SL не выставляется takeprofit = 50, //уровень выставления TP, если 0, то TP не выставляется MaxOrders = 1, //кол-во ордеров Magic = 123456; //уникальный номер ордера extern double LotBuy = 0.1; //объем ордера если 0 то не откоывать extern double LotSell = 0.1; //объем ордера если 0 то не откоывать extern datetime TimeSet = D'2014.08.25 15:00'; //Время выставления ордеров, если текущее время больше установленного, то выставляются сразу extern int attempts = 10; //кол-во попыток открытия |