我无法告诉计算机何时退出.我正在创建一个mm模型


Highestprice = ta.highest(close, 20)
LowestPrice = ta.lowest(close, 200)

Bid1exitCondition = state == 1 and close > fairValue and close < Highestprice[1]

if Bid1exitCondition
strategy.close("Bid 1 Close")
state:= 0

我在等出口。我在双向退出条件中定义了一个出口。但是什么也没发生。

你的条目应该是这样的:

strategy.entry('long', strategy.long, qty=Q_Jetons, stop=limiteachat, limit=limiteachat)

那么你的退出应该像这样:

strategy.exit(id='Exit', from_entry="long", stop=StopLoss)

在退出时,您需要在from_entry中指定条目的名称,这里是'long'

相关内容

  • 没有找到相关文章

最新更新