标签: pine-script
如何更改标签形状内的文本颜色?我不想更改标签的颜色,以保持对比度。
plotshape(趋势== 1和趋势[1] == -1?趋势:na,color = lime,style = shape.labelup,text ='BUY') plotshape(趋势== -1和趋势[1] == 1?趋势:不适用,颜色=红色,样式= shape.labeldown,文字=“卖”)
答案 0 :(得分:0)
plotshape()函数具有color和textcolor参数。
plotshape()
color
textcolor
颜色:形状的颜色。
文本颜色::文本的颜色。
//@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)