“cm open 2 stopopders” Script
The Script operates like an Expert Advisor except the only fact that it will be unloaded from memory, when it completes its mission.
It will set two pending orders – BuyStop and SellStop orders – at a certain time (set up in its inputs) and at the distance (set up in points in the inputs) from the current price with stop-losses and take-profits (set up in points in its inputs). When one of these orders is triggered, the opposite one will be deleted. When done, the Script will complete its work.
Inputs:
extern int level = 10, //расстояние от текущей цены до ордеров stoploss = 50, //уровень выставления SL, если 0, то SL не выставляется takeprofit = 50, //уровень выставления TP, если 0, то TP не выставляется Magic = 0; //уникальный номер ордера extern double Lot = 0.1; //объем ордеров extern datetime TimeSet = D'2016.01.06 01:08'; //Время выставления ордеров, если текущее время больше установленного, то выставляются сразу |