Э
Обучение языку MQL4 под MetaTrader 4
Элёр ответил xbms в Уголок Программиста
extern int StopLoss = 20; extern int TakeProfit = 20; void OnTick() { double OpenPrice1 = Ask+5*Point; double BuyStopLoss = OpenPrice1 - (StopLoss * Point); double TakeProfitBuy = OpenPrice1 + (TakeProfit * Point); double OpenPrice2 = Bid-5*Point; doubl
