StartAtmStrategy(atmStrategySelector.SelectedAtmSt rategy.DisplayName, entryOrder);
However, i would like to update the Stop Loss. I have tried, startAtmStrategy.SetStopLoss("Entry", CalculationMode.Price, stopPrice, false); but it creates an additional order instead of shifting the existing one from the ATM Strategy.
I have also tried, startAtmStrategy.AtmStrategyChangeStopTarget(0, stopPrice, "Stop" + i, atmStrategyId); where i get the Id
atmStrategyId = startAtmStrategy.Id.ToString();
but somehow, its not the correct Id.

Comment