Longer story:
I have my trading algorithm
If Logic = true
EnterTrade
SetAStopLoss
SetAProfitTarget
If PriceAction does Xyz
(essentially I want it to move the Stop Loss)
I would love to cancel the first stop loss that's at whatever my risk is for loss and move it to a position closer to my entry. Is that possible? Can I do that with simply declaring a new stop loss with the same fromEntrySignal?
Heck is there syntax to move an order to a new defined level?
Is there syntax to cancel a stop loss/profit target and set a new one within the same fromEntrySignal? I like the "fromEntrySignal" setup because it makes everything an OCO and I don't get zombie orders that make things go rogue.

Comment