Next: , Previous: , Up: Averages   [Index]


8.17 Triangular Moving Average

A triangular moving average (TMA) applies weights to each day in a triangular shape. For example on a 7-day average the weights are 1, 2, 3, 4, 3, 2, 1, or the following graph shows a 15-day average. The middle prices in the period have the greatest weight, and the oldest or newest only a small weight.


Triangular weights graph

It’s interesting to note TMA is equivalent to a twice-smoothed simple moving average of half period (see Simple Moving Average).

TMA[N] = SMA[floor(N/2)+1] of SMA[ceil(N/2)]

In Chart TMA is under “Low Priority” in the indicator lists.


Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2016, 2017 Kevin Ryde

Chart is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.