松脚本 |标签 |酒吧位置问题
PineScript | Labels | Bar Location Issue
我的脚本有问题。它在同一位置生成大量标签。我认为问题是“y”变量,但我不知道如何将它与我的输入栏位置联系起来。
脚本:
// Input I used | Time
barTime = input.time(title="Bar Time", defval=timestamp("01 Jan 2022 13:30 +0000"), confirm=true)
// Label
SL_label = label.new(
x = barTime,
y = close,
text= trailType == "Long" ? "Long T" : "Short T",
color = trailType == "Long" ? color.green : color.red,
style = trailType == "Long" ? label.style_label_up : label.style_label_down,
textcolor = color.white,
xloc = xloc.bar_time)
因为你从来没有删除过你的标签。
将此添加到脚本的末尾,它将绘制一个标签。
label.delete(SL_label[1])
我的脚本有问题。它在同一位置生成大量标签。我认为问题是“y”变量,但我不知道如何将它与我的输入栏位置联系起来。
脚本:
// Input I used | Time
barTime = input.time(title="Bar Time", defval=timestamp("01 Jan 2022 13:30 +0000"), confirm=true)
// Label
SL_label = label.new(
x = barTime,
y = close,
text= trailType == "Long" ? "Long T" : "Short T",
color = trailType == "Long" ? color.green : color.red,
style = trailType == "Long" ? label.style_label_up : label.style_label_down,
textcolor = color.white,
xloc = xloc.bar_time)
因为你从来没有删除过你的标签。
将此添加到脚本的末尾,它将绘制一个标签。
label.delete(SL_label[1])