我想在 Pinescript 中编写这个 ThinkOrSwim 语句:
MACD.Diff()
我试过这个:
MACD = ta.macd(close, 12, 6, 9)
ta.sma(MACD, 9)
但我收到以下错误:
Syntax error: Variables of array type are not supported!
在 Pinescript 中获取 MACD 与其移动平均线之间差异的正确方法是什么?
我想在 Pinescript 中编写这个 ThinkOrSwim 语句:
MACD.Diff()
我试过这个:
MACD = ta.macd(close, 12, 6, 9)
ta.sma(MACD, 9)
但我收到以下错误:
Syntax error: Variables of array type are not supported!
在 Pinescript 中获取 MACD 与其移动平均线之间差异的正确方法是什么?