Commodity Channel Index

Technical Analysis Indicator: cci

Fork me on GitHub

Function Prototype

/* Commodity Channel Index */
/* Type: indicator */
/* Input arrays: 3    Options: 1    Output arrays: 1 */
/* Inputs: high, low, close */
/* Options: period */
/* Outputs: cci */
int ti_cci_start(TI_REAL const *options);
int ti_cci(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 Commodity Channel Index indicator is used to detect trends. It works by taking a Simple Moving Average of the Typical Price and comparing it to the amount of volatility in Typical Price.

It takes one parameter: the period n.

The calculation is as follows:

$$typprice_{t} = \frac{high_{t}+low_{t}+close_{t}}{3}$$
$$atp_{t} = \frac{1}{n} \sum_{i=0}^{n-1} typprice_{t-i}$$
$$md_{t} = \frac{1}{n} \sum_{i=0}^{n-1} | typprice_{t-i} - atp_{t} |$$
$$cci_{t} = \frac{typprice_{t} - atp_{t}}{0.015 md_{t}} $$

See Also

References

Example Usage

Calling From C

/* Example usage of Commodity Channel Index */
/* Assuming that 'high', 'low', and 'close' are pre-loaded arrays of size 'in_size'. */
TI_REAL *inputs[] = {high, low, close};
TI_REAL options[] = {5}; /* period */
TI_REAL *outputs[1]; /* cci */

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

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

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

Calling From Lua (with Tulip Chart bindings)

-- Example usage of Commodity Channel Index
cci = ti.cci(high, low, close, 5)

Example Calculation

period = 5

datehighlowclosecci
2005-11-0182.1581.2981.59
2005-11-0281.8980.6481.06
2005-11-0383.0381.3182.87
2005-11-0483.3082.6583.00
2005-11-0783.8583.0783.61
2005-11-0883.9083.1183.15
2005-11-0983.3382.4982.84
2005-11-1084.3082.3083.99
2005-11-1184.8484.1584.55166.67
2005-11-1485.0084.1184.3682.02
2005-11-1585.9084.0385.5395.50
2005-11-1686.5885.3986.54130.91
2005-11-1786.9885.7686.8999.16
2005-11-1888.0087.1787.77116.34
2005-11-2187.8787.0187.2971.93

Chart

 

Other Indicators

Previous indicator: Balance of Power

Next indicator: Vector Ceiling

Random indicator: Bollinger Bands