gpt4 book ai didi

pine-script - Tradingview Pine 脚本在策略进入时保存收盘价

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

嘿,我正在尝试将 strategy.entry 时的收盘价保存到一个变量中,以便稍后我可以使用它来退出。

if condition
strategy.entry("long", true)
buyprice=close
(strategy.exit("exit","long", when = close>buyprice*1.1)

我收到错误: Undeclared identifier 'buyprice' .据我了解,这意味着该变量在 if 语句之外无效。有没有办法改变这种情况?在此先感谢您的帮助

最佳答案

This是我可以让它发挥作用的唯一方法。

基本上,您在满足多头条件时设置先前的价格,然后在下一阶段从全局变量中检索该值。

//@version=2
...
buyprice=buyprice[1]


golong=...

if golong
buyprice := close

goshort=... or close<=buyprice*0.95

strategy.entry("Long", long=true, when=golong)
strategy.close("Long", when=goshort)

希望这可以帮助!

关于pine-script - Tradingview Pine 脚本在策略进入时保存收盘价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48958139/

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