【发布时间】:2020-12-15 21:05:52
【问题描述】:
【问题讨论】:
标签: pine-script trading
【问题讨论】:
标签: pine-script trading
使用label.new,用字符串填写text=部分,对于style=label.style_none
基本上是这样的。
label= label.new( bar_index, high,
text="XYXYXYXYXYX",
color=color.white,
textcolor= color.green,
style = label.style_none,
yloc = yloc.abovebar)
如果您有一个变量,并且想将其转换为字符串,请使用text = tostring(x)。
【讨论】: