Modified Moving Average - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Modified moving average (MMA) makes averages more susceptible to recent shifts. The Modified moving average is a special case of the Exponential moving average, for which the smoothing constant is equal to the reciprocal of the smoothing interval.

The first point of the modified moving average is calculated like the first point of the simple moving average. Each subsequent point is calculated by adding the new value to the most recently calculated modified moving average value and then, from that sum, subtracting the last average value. The difference is the new modified moving average value.

With MAvgType ('M'), the MovingAverage function uses this procedure:
  • Compute the arithmetic average of the first window_size rows.

For each subsequent row, compute the new modified moving average value with this formula:

MMAM = MMAM-1 + (1/window_size) (VM - MMAM-1)

VM is the current value. M is the current index.