如何获取plotshape为真的最后一根柱线的最高值?
我试图返回满足信号条件的最后一根柱线的最高价。 例如,每当“buyretracebar”绘制到图表时,我想获取该柱的最高值。谢谢!
buyretracebar=sl and iff(cloud1, buycloud1filteron, buycloud1filteroff)
plotshape(buyretracebar, title = "Long Bar")
Im trying to return the High of the last bar in which conditions were met for a signal.
For example whenever "buyretracebar" has plotted to chart, i want to get the value of the high for that bar. thanks!
buyretracebar=sl and iff(cloud1, buycloud1filteron, buycloud1filteroff)
plotshape(buyretracebar, title = "Long Bar")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用
var
变量和 if 检查来做到这一点。或者您可以使用ta.valuewhen()
You can do that by using a
var
variable and if check.Or you can use
ta.valuewhen()