Triangular Moving Average - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798

The triangular moving average (TMA) differs from the simple moving average in that it is double-smoothed; that is, averaged twice. It takes an average over Simple Moving Averages. Double-smoothing keeps the triangular moving average from responding to new data points as fast as the simple moving average. If you want an average that responds quickly to new data points, use the simple moving average or exponential moving average.

With MAvgType ('T'), the MovingAverage function uses this procedure:
  1. Compute the window size, N:

    N=ceil(window_size +1)/2

  2. Compute the simple moving average of each target column, using this formula:

    SMAi = (V1 + V2 + … + VN)/N

    The function calculates SMAi on the ith window of the target column from the start of the row.

    Vi is the value of the target column at index i in the window.

  3. Compute the triangular moving average by computing the simple moving average with window size N on the values obtained in step 2, using this formula:

    TMA = (SMA1 + SMA2 + … + SMAN)/N

    The function writes the cumulative moving average values computed for the first n rows, where n is less than N, to the output table.