如何在松本脚本中更改形状内的文本颜色?

时间:2019-06-03 08:34:54

标签: pine-script

如何更改标签形状内的文本颜色?我不想更改标签的颜色,以保持对比度。

plotshape(趋势== 1和趋势[1] == -1?趋势:na,color = lime,style = shape.labelup,text ='BUY') plotshape(趋势== -1和趋势[1] == 1?趋势:不适用,颜色=红色,样式= shape.labeldown,文字=“卖”)

1 个答案:

答案 0 :(得分:0)

plotshape()函数具有colortextcolor参数。

颜色形状的颜色。

文本颜色:文本的颜色。

//@version=3
study("My Script", overlay=true)
plotshape(series=close > open, text="Green\nCandle", style=shape.labelup, location=location.belowbar, color=green, textcolor=red, size=size.small)

enter image description here