Triangular Moving Average

Technical Analysis Indicator: trima

Fork me on GitHub

Function Prototype

/* Triangular Moving Average */
/* Type: overlay */
/* Input arrays: 1    Options: 1    Output arrays: 1 */
/* Inputs: real */
/* Options: period */
/* Outputs: trima */
int ti_trima_start(TI_REAL const *options);
int ti_trima(int size,
      TI_REAL const *const *inputs,
      TI_REAL const *options,
      TI_REAL *const *outputs);

Description

This documentation is still a work in progress. It has omissions, and it probably has errors too. If you see any issues, or have any general feedback, please get in touch.

The Triangular Moving Average is similar to the Simple Moving Average but instead places more weight on middle portion of the smoothing period and less weight on the newest and oldest bars in the period.

It takes one parameter, the period n. Larger values for n will have a greater smoothing effect on the input data.

It is calculated for each bar as the weighted arithmetic mean of the previous n bars. For example, the weights w for an n of 4 are: 1, 2, 2, 1. The weights w for a n of 7 are: 1, 2, 3, 4, 3, 2, 1. It's easy to see why it's called the Triangular Moving Average.

Once the weights w are know, the calculation is as follows.

$$trima_{t} = \frac{1}{\sum w} \sum_{i=0}^{n-1} w_{i} in_{t-i}$$

The calculation can also be expressed in terms of two Simple Moving Averages with adjusted periods n.

$$ trima =\begin{cases} ma^{\frac{n}{2}+1}(ma^{\frac{n}{2}}(in)) & n \text{ is even} \\ma^{\frac{n+1}{2}}(ma^{\frac{n+1}{2}}(in)) & n \text{ is odd} \end{cases} $$

The above equivalency is correct. It's part of the TI test suite. I've seen several other sources that get it subtly wrong.

See Also

References

Example Usage

Calling From C

/* Example usage of Triangular Moving Average */
/* Assuming that 'input' is a pre-loaded array of size 'in_size'. */
TI_REAL *inputs[] = {input};
TI_REAL options[] = {5}; /* period */
TI_REAL *outputs[1]; /* trima */

/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_trima_start(options);

/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* trima */

/* Run the actual calculation. */
const int ret = ti_trima(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);

Calling From Lua (with Tulip Chart bindings)

-- Example usage of Triangular Moving Average
trima = ti.trima(input, 5)

Example Calculation

period = 5

dateinputtrima
2005-11-0181.59
2005-11-0281.06
2005-11-0382.87
2005-11-0483.00
2005-11-0783.6182.44
2005-11-0883.1582.91
2005-11-0982.8483.20
2005-11-1083.9983.26
2005-11-1184.5583.44
2005-11-1484.3683.81
2005-11-1585.5384.30
2005-11-1686.5484.86
2005-11-1786.8985.54
2005-11-1887.7786.29
2005-11-2187.2986.90

Chart

 

Other Indicators

Previous indicator: True Range

Next indicator: Trix

Random indicator: Hull Moving Average