My goal is to get the stop loss to update at the end of the formation of every price bar after my signal has entered an entry.
For instance: I have a buy signal telling me to place a long stop limit order at the high of the current 30 minute bar + 1 tick ( the signal bar). My initial stop loss point is the low of the signal bar -1 tick. At the conclusion of the current bar, (election bar), if my profit target has not been hit, I would like my stop loss to move to the low of the election bar -1 tick.
Here is my initial script for the Signal bar stop :
SetStopLoss(CalculationMode.Price, Low[0]+ -1* TickSize);
How can I get my stop loss to update on the completion of every successive bar until my profit target is hit, or my new stop is hit?

Comment