pinescript中的close和close[1]有什么区别
What's the difference between close and close[1] in pinescript
rsi_value = rsi(close[1],lengthMiddle)
close[1] 在 tradingview pinescript 中的含义以及它与 close 的区别
这是一根柱线前的收盘价。
在 Pine 中,收盘变量或等价的 close[0] 保存当前柱的收盘价。如果您的代码现在在数据集的第三个柱上执行,close 将包含该柱的收盘价,close[1] 将包含前一个柱(第二个)的收盘价,close[2 ], 首先。 close[3] 将 return 不可用,因为该位置不存在柱,因此其值不可用。
rsi_value = rsi(close[1],lengthMiddle)
close[1] 在 tradingview pinescript 中的含义以及它与 close 的区别
这是一根柱线前的收盘价。
在 Pine 中,收盘变量或等价的 close[0] 保存当前柱的收盘价。如果您的代码现在在数据集的第三个柱上执行,close 将包含该柱的收盘价,close[1] 将包含前一个柱(第二个)的收盘价,close[2 ], 首先。 close[3] 将 return 不可用,因为该位置不存在柱,因此其值不可用。