Tradingview中:
plotshape(
bearCondition and validateNoBreak(bearCondition, false),
location = location.belowbar, // 位置:K线下方(逗号分隔)
color = color.new(color.red, 0), // 背景色:红色(逗号分隔)
text = "B", // 文本内容(逗号分隔)
textcolor = color.white, // 文本色:白色(逗号分隔)
style = shape.labelup, // 样式:向上箭头(逗号分隔)
offset = 0 // 偏移量:0(最后一个参数,无逗号)
)
始终报错第一行:plotshape(
Mismatched input "end of line without line continuation" expecting ")"
请问该如何解决,谢谢
相似问题