The Exponential Moving Average function calculates values using the following formula:
br> FP = 2 / ( Period + 1 )
Value = Source* FP + (Value - 1) * ( 1-FP ).