Correct usage of strategy.order
问题 I am trying to use strategy.order for shorts in order to have 3 take profit levels (level 1 lowest TP and Level 3 highest TP) and execute when my stop loss is reached to exit the remaining position. if (strategy.position_size >= 0 and high[1] < close) strategy.entry(id="EnterShort", long=false, qty = 1) shortHighEntery := close shortHighEnteryStoppLoss :=high +1 else shortHighEntery := shortHighEntery[1] shortHighEnteryStoppLoss :=shortHighEnteryStoppLoss[1] exitShort = shortHighEntery *0.995