That's what I would like to accomplish:
Scenario:
Strategy "A" has
SetProfitTarget("A", CalculationMode.Percent, 0.1); //10%
SetStopLoss("A", CalculationMode.Percent, 0.05, false); //5%
I want to adjust the profit order so that when the 10% is hit the code adds a limit order to the current price of the instrument so that if the instruments goes below it closes the position. Also, the SetProfitTarget order goes from 10% to 15%.
Is this possible?
Thanks!

Comment