dema

语法

dema(X, window)

TA-lib 系列函数参数说明和窗口计算规则请参考:TA-lib 系列

详情

在给定长度(以元素个数衡量)的滑动窗口内,计算 X 的双重指数移动平均(Double Exponential Moving Average)。

其计算公式为:





例子

x=12.1 12.2 12.6 12.8 11.9 11.6 11.2
dema(x,3);
# output
[,,,,12.091666666666668,11.689583333333335,11.266666666666665]

x=matrix(12.1 12.2 12.6 12.8 11.9 11.6 11.2, 14 15 18 19 21 12 10)
dema(x,3);
col1 col2
12.0917 20.9444
11.6896 14.6806
11.2667 10.9444

相关函数:ema, tema