pinescript 安全功能第三个参数是什么
我无法理解安全函数第三个参数
nAMA = nz(nAMA[1]) + nsmooth * (xPrice - nz(nAMA[1]))
ha_t = heikinashi(tickerid)
ha_close = security(ha_t, period, nAMA)
我应该如何解释这个语法? (nAMA)
I cant understand about security function 3rd argument
nAMA = nz(nAMA[1]) + nsmooth * (xPrice - nz(nAMA[1]))
ha_t = heikinashi(tickerid)
ha_close = security(ha_t, period, nAMA)
How should I interpret this syntax? ( nAMA )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第三个参数是表达式。基本上是您想从安全调用中获取的数据。在您的情况下,它将是
nAMA
在 heikinashi 条中的值。如果您询问
nAMA
是如何计算的,这实际上是简单的数学计算。nz() 函数接受一个参数,如果它等于
na
则返回 0,否则返回参数的值。通常在您想要引用历史数据时使用。当您执行此操作时,第一个柱将返回历史值na
,因为它是第一个柱并且还没有历史记录。一旦您了解了
nz()
的工作原理,您就可以想到类似nAMA = nAMA[1] + nsmooth * (xPrice - nAMA[1])
的表达式,其中nAMA[1]
是nAMA
的先前值。The 3rd argument is the expression. Basically the data you want to get from the security call. In your case, it will be
nAMA
's value in heikinashi bars.If you are asking about how
nAMA
is calculated, it is simple maths actually.The nz() function takes an argument and if it is equal to
na
then it returns 0, otherwise it returns the argument’s value. Usually used when you want to refer to historical data. When you do that, the very first bar will returnna
for historical values because it is the first bar and there is no history yet.Once you understand how
nz()
works, you can think that expression likenAMA = nAMA[1] + nsmooth * (xPrice - nAMA[1])
wherenAMA[1]
isnAMA
's previous value.