let's assume I have this code:
SetStopLoss(CalculationMode.Percent,stoppercent/100);
EnterLong(1,"buy");
This will create a stop loss order once in position.
Question: How do I get rid of that stop order and revert to a naked position?
can I just call SetStopLoss(CalculationMode.Price,0) ?
P.S. I notice that when I do call this function the scale of the chart is changed such that the 0 price (==stop price) is included on the chart.
I do not want to change the chart scale, I just want to cancel the stop order.
regards
andreas

Comment