DEMA(X,N) = 2* EMA(X,N) - EMA(EMA(X,N),N)
The combination of twice the EMA minus EMA-of-EMA gives this filter some interesting properties. First, it has a much heavier weight on recent data than a plain EMA. Recent data is weighted nearly twice as heavily as in regular EMA. This weight...