如何画出一条从蜡烛的关闭到买入条件触发到一支蜡烛关闭之前的水平线,在哪里卖出条件信号。
发布于 2022-08-02 10:51:57
使用绘图函数中的style=plot.style_linebr
plot(strategy.position_size > 0 ? close : na, title = "Close Long", color = color.fuchsia, linewidth=2, style=plot.style_linebr)https://stackoverflow.com/questions/73196963
复制相似问题