I was wondering, when coding a strategy that uses the managed order approach, if we are able to manually move the stops and the targets in the DOM for the strategy entered on its signals as I would be able to when using an auto trader that creates an order using an ATM.
Current the strategy fires the orders with a 10 tick stop and a 20 tick target but if i move the stop in the DOM manually when the next bar appears the stop is returned to its original state of 10 tick stop and 20 tick target. Is it possible to move the stop manually in the DOM for an order that was created by the managed approached strategy?
This following is my syntax in the initialize section for the stop and target if it helps.
SetProfitTarget("SE1", CalculationMode.Ticks, ProfitTarget);
SetStopLoss(CalculationMode.Ticks, StopLoss);
SetProfitTarget("LE1", CalculationMode.Ticks, ProfitTarget);
Thank you for your help in advance
Regards
Sammy

Comment