我想要获取旧蜡烛的数据,如高、低、关、开
我能得到第一点和第二点的数据吗?
注意:这个链接中我用来选择那些蜡烛的代码
How to check if the candle is the largest one in Pine-Script?
发布于 2020-06-30 00:38:03
使用valuewhen函数,如果您想要更高的价格,可以使用:
valuewhen(rising(r,50),high,0)对于图像中的"candle 2“,请使用
valuewhen(rising(r,50),high,2)https://stackoverflow.com/questions/62641617
复制相似问题