gpt4 book ai didi

pine-script - 如何根据条件为真触发标签,但只有一次

转载 作者:行者123 更新时间:2023-12-05 06:50:01 26 4
gpt4 key购买 nike

我是 Pine 脚本的新手,请多多包涵。我试图弄清楚如何在“多头”条件变为真时绘制购买标签,但这只是第一次,而不是对于条件为真的每个柱。所以基本上,“strategy.entry”和“strategy.close”打开和关闭单个头寸的方式相同。

 if (longConditions)
strategy.entry("Long", true)
longLabel = label.new(
x=bar_index,
y=na,
text="Long",
xloc=xloc.bar_index,
yloc=yloc.belowbar,
color=color.green,
textcolor=color.white,
style=label.style_label_up,
size=size.normal)

if (closeLongConditions)
strategy.close("Long")
closeLongLabel = label.new(
x=bar_index,
y=na,
text="Close",
xloc=xloc.bar_index,
yloc=yloc.abovebar,
color=color.red,
textcolor=color.white,
style=label.style_label_down,
size=size.normal)

有没有办法让“strategy.entry”和“strategy.close”触发标签而不是我的“多头”和“关闭”条件?

最佳答案

这是解决方法

 if (longConditions and strategy.position_size < 0)
strategy.entry("Long", true)
longLabel = label.new(
x=bar_index,
y=na,
text="Long",
xloc=xloc.bar_index,
yloc=yloc.belowbar,
color=color.green,
textcolor=color.white,
style=label.style_label_up,
size=size.normal)

if (closeLongConditions and strategy.position_size>0)
strategy.close("Long")
closeLongLabel = label.new(
x=bar_index,
y=na,
text="Close",
xloc=xloc.bar_index,
yloc=yloc.abovebar,
color=color.red,
textcolor=color.white,
style=label.style_label_down,
size=size.normal)

关于pine-script - 如何根据条件为真触发标签,但只有一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66480041/

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