gpt4 book ai didi

stock - 如何在某些天后从 `strategy.entry` 退出

转载 作者:行者123 更新时间:2023-12-04 01:56:59 25 4
gpt4 key购买 nike

我似乎无法弄清楚从交易进入的特定时间间隔退出交易的语法。任何帮助将不胜感激。

if (crossover(delta, 0))
strategy.entry("Long", strategy.long, comment="Long")
strategy.exit("Exit", "Long", when = 15)

上面的代码我想在15天后退出多头头寸。但这似乎不起作用。

最佳答案

试试 barssince

// Example - Buy when the price closes below 22

myEntry = close < 22

strategy.entry(id= "sample", long = strategy.long, when= myEntry)

// Close 10 bar periods after the condition that triggered the entry

strategy.close(id = "sample", when = barssince(myEntry) >= 10)

关于stock - 如何在某些天后从 `strategy.entry` 退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49835309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com