The problem I'm having is that when my strategy calls the SetTrailStop() method, it's ignored. Yes, I have already read the help page for SetTrailStop() thoroughly. It says that the SetStopLoss() takes priority over SetTrailStop(). So how do I cancel the original Stoploss order so that I can place a SetTrailStop? I tried this but it didn't work:
CancelOrder(myEntry); // Cancel working stoploss order
SetTrailStop(CalculationMode.Ticks, 4); // Change to a trailing stop

Comment