仅当时间范围小于 H4 时才显示区域

发布于 2025-01-09 02:57:28 字数 152 浏览 0 评论 0原文

我正在使用外汇市场会话脚本,但我想仅在当前时间范围低于 H4 时显示会话区域。我该怎么做?

bool show = timeframe.multiplier >= 1 and timeframe.multiplier <= 60

I'm using FX Market Sessions script, but I want to show the session zones only if the current timeframe is below H4. How do I do that?

bool show = timeframe.multiplier >= 1 and timeframe.multiplier <= 60

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

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

发布评论

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

评论(1

如歌彻婉言 2025-01-16 02:57:28

将时间范围转换为分钟,然后比较结果。

//@version=5
indicator("My script")

f_tfInMinutes() => 
    _tfInMinutes = timeframe.multiplier * (
      timeframe.isseconds ? 1. / 60             :
      timeframe.isminutes ? 1.                  :
      timeframe.isdaily   ? 60. * 24            :
      timeframe.isweekly  ? 60. * 24 * 7        :
      timeframe.ismonthly ? 60. * 24 * 30.4375  : na)

is_show = f_tfInMinutes() < 240

plot(is_show ? close : na)

Convert timeframe to minutes then compare the result.

//@version=5
indicator("My script")

f_tfInMinutes() => 
    _tfInMinutes = timeframe.multiplier * (
      timeframe.isseconds ? 1. / 60             :
      timeframe.isminutes ? 1.                  :
      timeframe.isdaily   ? 60. * 24            :
      timeframe.isweekly  ? 60. * 24 * 7        :
      timeframe.ismonthly ? 60. * 24 * 30.4375  : na)

is_show = f_tfInMinutes() < 240

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