pine-script 中的 [] 是什么?

发布于 2025-01-10 14:50:45 字数 541 浏览 1 评论 0原文

下面代码中 _smoothed[1] 变量的值是多少?

f_zrsi( _source, _length ) => rsi( _source, _length ) - 50

f_rsi( _source, _length, _mode ) =>
    //  get base rsi
    float _zrsi = f_zrsi( _source, _length )

    //  smoothing in a manner similar to HA open, but rather using the realtime
    //  rsi in place of the prior close value.
    var float _smoothed = na
    _smoothed := na( _smoothed[1] ) ? _zrsi : ( _smoothed[1] + _zrsi ) / 2

    //  return the requested mode
    _mode ? _smoothed : _zrsi

what is value of _smoothed[1] variable in below code?

f_zrsi( _source, _length ) => rsi( _source, _length ) - 50

f_rsi( _source, _length, _mode ) =>
    //  get base rsi
    float _zrsi = f_zrsi( _source, _length )

    //  smoothing in a manner similar to HA open, but rather using the realtime
    //  rsi in place of the prior close value.
    var float _smoothed = na
    _smoothed := na( _smoothed[1] ) ? _zrsi : ( _smoothed[1] + _zrsi ) / 2

    //  return the requested mode
    _mode ? _smoothed : _zrsi

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

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

发布评论

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

评论(1

过期以后 2025-01-17 14:50:45

它被称为历史参考运算符用于访问历史数据。

在您的示例中,_smoothed[1] 返回 _smoothed 的先前值。

It is called the History Reference Operator and is used to access historical data.

In your example, _smoothed[1] returns the previous value of _smoothed.

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