如何让脚本查找最后 x 条中的值(如果该值为真)

发布于 2025-01-13 17:07:05 字数 104 浏览 0 评论 0原文

我设置了一个值,并希望脚本查看最后 10 个柱的值是否为真。我知道我可以使用 [] 10 次,这会得到相同的结果,但它看起来不正确。是否需要添加一段代码以使脚本使用一个代码查找最后 x 根柱线?

I have a value I set and want the script to look if it was true in the last lets say 10 bars. I know I can use [] 10 times which would give the same result, but it doesn't look right. Is there a code to add to make the script look for the last x bars with one code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小兔几 2025-01-20 17:07:05

只需将其转换为 1 或 0,然后获取最后 X 根柱的最高值:

check_condition = ...
condition_true_last_x_bars = ta.highest(check_condition ? 1 : 0, x_bars) > 0

Just convert it to 1 or 0 and then get the highest for the last X bars:

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