作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试着用变量写文本,但是我不能
aaaa = 121.150
bbbb = 120.100
target = "TP = " + ( aaaa * 0.9 ) + "\n SL = " + bbbb*1.01
plotshape(data , style=shape.triangledown,location=location.abovebar, color=red, text=target)
我希望输出看起来像这样:
最佳答案
要在图表上放置系列(动态)文本,您需要使用 Pine v4 和 label.new()
。您只会看到最近创建的 ~50 个标签:
//@version=4
study("", "", true)
aaaa = 121.150
bbbb = 120.100
target = "TP = " + tostring(aaaa * 0.9) + "\n SL = " + tostring(bbbb*1.01)
cond = rising(close, 1)[1] and falling(close, 1)
if cond
label.new(bar_index, high, target, yloc = yloc.abovebar, color = color.red, style = label.style_triangledown)
关于pine-script - 如何在 Pine Script 中用字符串写入变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61920909/
我是一名优秀的程序员,十分优秀!