Plotshape 和标签语法错误;太多争论

问题描述 投票:0回答:1

在下面的代码中,我收到了plotshape 的语法错误和一些标签的语法错误。即使对于最大/最小我也得到了太多的争论。我使用标签从突发公式中获取文本值。需要帮助来解决这些问题。

//@version=4 
study("Intraburst", overlay=true)

truemove = abs(open[2] - close) dayTrueHigh = max(high[1], high,
close[2]) dayTrueLow = min(low[1], low, close[2]) dayTrueRange =
dayTrueHigh - dayTrueLow intraburstLevel = truemove / dayTrueRange *
100

if intraburstLevel > 30
    plotshape(series=intraburstLevel, text="ON", style=shape.circle, location=location.abovebar, color=color.green, size=size.normal) else
    plotshape(series=intraburstLevel, text="OFF", style=shape.circle, location=location.abovebar, color=color.red, size=size.normal)

label = label.new(bar_index=0, yloc=y_top, xloc=xloc.bar_index,
text=tostring(intraburstLevel, "0.00"), size=size.large,
color=color.black) label.location = location.top label.y = y_top
label.x = x_right label.text = tostring(intraburstLevel, "0.00")
pine-script trading pine-script-v4
1个回答
0
投票

在系列中,使用三元运算符。

类似这样的事情:

plotshape(
  intraburstLevel > 30 ? intraburstLevel : na,
  text = "ON",
  style = shape.circle,
  location = location.abovebar,
  color = color.green,
  size = size.normal)
plotshape(
  intraburstLevel <= 30 ? intraburstLevel : na,
  text = "OFF",
  style = shape.circle,
  location = location.abovebar,
  color      = color.red,
  size = size.normal)

和标签

label.new(
  bar_index,
  close,
  tostring (intraburstLevel, "##.00"),
  color     = color.black,
  textcolor = color.white)
© www.soinside.com 2019 - 2024. All rights reserved.