
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
https://www.mql5.com/en/forum/129818
OrderSelect(res, SELECT_BY_TICKET);
bool retrn = OrderModify(res, OrderOpenPrice(), Bid+StopLoss, Bid-TakeProfit, 0, Red);
or
OrderSelect(res, SELECT_BY_TICKET);
bool retrn = OrderModify(res, OrderOpenPrice(), Bid+StopLoss*Point, Bid-TakeProfit*Point, 0, Red);
Thx, gjol
I learnt a lot from this. and it works. Now I see I should be checking if the orders actually happened.
Rodney