Do not allow the user to drag the Stop Loss line

 
Hello everyone, in my EA the user informs the Stop Loss value in a field, and when the trade opens, the Stop Loss line is placed on the chart automatically.
I use the "trade" Class and the "Trade.Buy(...)" command where I inform the Take Profit and Stop Loss position, but after opening the operation the user can drag the Stop Loss line, I didn't find how to block this, could someone help me? it's possible?
Thanks!
 
Murilo Junqueira:
Hello everyone, in my EA the user informs the Stop Loss value in a field, and when the trade opens, the Stop Loss line is placed on the chart automatically.
I use the "trade" Class and the "Trade.Buy(...)" command where I inform the Take Profit and Stop Loss position, but after opening the operation the user can drag the Stop Loss line, I didn't find how to block this, could someone help me? it's possible?
Thanks!
 ChartSetInteger(0,CHART_DRAG_TRADE_LEVELS,false);
 
Keith Watford #:

Thanks man!!!