Exponential Moving Average

Abbreviation: ExpAvg
Category: Averages
Input Parameters:

Name Range Default
Time Series Close
ExpAvg Periods Int >= 1 5

 
Calculation:

f * X + ( 1.0 – f ) * Y

where
X = Time Series
Y = one period ago (1st period Y is set to 1st period X)
f = 2 / (ExpAvg Periods + 1)

 
Discussion:

Provides a smoothing of a time series with an emphasis given to values during the most recent time periods. Most users are more comfortable working with time periods rather than percentages, therefore as a general guideline, the ExpAvg Factor roughly translates to the number of days that the function takes into consideration. However, in reality it takes all previous days into consideration, while giving the first day an exponentially smaller input to the most recent value.
 

Was this article helpful?

Related Articles