close
--
三次指数移动平均线
下载:
她 – quick 总结
三次指数移动平均线 (她) is 另一个 顺畅 and faster version developed by 帕特里克摹. 穆罗伊 in 1994.
His first Double version can be studied here: 双指数移动平均线 (DEMA)
Again, the idea of the TEMA indicator is to not just 保证 the successive EMA of EMA iteration, but to 消除 the 滞后因素,目前 in 传统的均线.
DEMA指标公式
The 三次指数移动平均线 (她) 结合单一均线, 双均线 and 三重均线, 提供一个较低的滞后 than either of 这三个平均值.
交易 with TEMA indicator
Trading with 她 is 类似 to tr交易#119;ith DEMA指标.
You can substitute your regular EMA with 她, or you can test crossover signals when using two TEMA indicators.
--
TS TEMA code:
Inputs:
Length(14);
Vars:
EMAValue(0),
DbEMAValue(0);
EMAValue = XAverage(Close,Length);
DbEMAValue = XAverage(EMAValue,Length);
plot1(3*EMAValue - 3*DbEMAValue+ XAverage(DbEMAValue,Length),"TEMA");
轉自 http://www.coco-in.net/thread-13180-1-1.html
--
全站熱搜
留言列表