Class ExponentialMovingAverage<T>


@Private public class ExponentialMovingAverage<T> extends WindowMovingAverage<T>
EMA is similar to WeightedMovingAverage in weighted, but the weighting factor decrease exponentially. It brings benefits that it is more sensitive, and can see the trends easily.