SetProfitTarget(CalculationMode.Ticks, SETProfitTargetTicks);
I am using the 2 above in my Strategy code
During an Active Trade, IF I move the SetTrailStop to a tighter Stop IT Remains where I move it to and Hold that new stop value and as Price advances above the Trail Stop Ticks of the code it will resume Trailing ( this is good when you fell your trade is at a stop resistance area and you wish to protect profits at that level area)
My Question is regarding the SetProfitTarget order, During an Active Trade, IF I move the SetProfitTarget to a closer to the entry Price within a few Live Data ticks the order moves back to the original Profit Target.
Is there a way to keep this from happening?
SetProfitTarget(CalculationMode.Ticks, SETProfitTargetTicks, true); <<-------- WOULD ADDING true fix that issue

Comment