【发布时间】:2020-06-17 10:24:25
【问题描述】:
我正在绘制一条每个月都会改变其值的线:
lastmonth_high = security(syminfo.tickerid, "M", high)
plot(lastmonth_high, color=lastmonth_high != lastmonth_high[1] ? na : color.blue, style=plot.style_line, linewidth=3)
这样,它不会在实际柱上绘制任何值。 如何将第一行向右延伸?
【问题讨论】:
标签: plot pine-script