我需要在进入交易的同时设置订单的止损和获利,而不是像使用strategy.entry然后使用strategy.exit一样。 这是因为我正在使用基于ATR的止损,并且无法使用2个功能。这是因为ATR是在以后每次计算的,因此我需要从头开始设置ATR,但我不知道将来的ATR会在哪里。 这就是我现在所拥有的,但是我需要在同一实例上进行设置。谢谢!
strategy.entry("SELL", strategy.short)
strategy.exit("Exit Long", from_entry = "BUY", loss =longStop, profit = longStop)