如何获取plotshape为真的最后一根柱线的最高值?

发布于 2025-01-10 05:25:37 字数 215 浏览 0 评论 0原文

我试图返回满足信号条件的最后一根柱线的最高价。 例如,每当“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青朷 2025-01-17 05:25:37

您可以通过使用 var 变量和 if 检查来做到这一点。

var float highAtRetrace = na

if buyretracebar
    highAtRetrace  := high

或者您可以使用ta.valuewhen()

ta.valuewhen(buyretracebar, high, 0)

You can do that by using a var variable and if check.

var float highAtRetrace = na

if buyretracebar
    highAtRetrace  := high

Or you can use ta.valuewhen()

ta.valuewhen(buyretracebar, high, 0)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文