public class ExponentialMovingAverage
extends Object
Uses the formula mentioned below for simple ExponentialMovingAverage
Values of alpha close to 1 have less of a smoothing effect and give greater weight to recent changes in the data,
while values of alpha closer to 0 have a greater smoothing effect and are less responsive to recent changes.