Skip to content

CCI Stock Technical Indicator with R

Last Update: February 21, 2020

Stock technical indicators are calculated by applying certain formula to stock prices and volume data. They are used to alert on the need to study stock price action with greater detail, confirm other technical indicators’ signals or predict future stock prices direction.

This topic is part of Stock Technical Analysis with R course. Feel free to take a look at Course Curriculum.

This tutorial has an educational and informational purpose and doesn’t constitute any type of trading or investment advice. All content, including code and data, is presented for personal educational use exclusively and with no guarantee of exactness of completeness. Past performance doesn’t guarantee future results. Please read full Disclaimer.

An example of stock technical indicators is commodity channel index CCI [1] which consists of bounded oscillator that measures a stock price variation from its statistical mean. Twenty days and constant factor are commonly used to make sure most values fall within bands.

1. Technical indicator calculation.

1.1. Typical price calculation.

tp_{t}=\frac{h_{t}+l_{t}+c_{t}}{3}

Where tp_{t} = current period stock typical price, h_{t} = current period stock high price, l_{t} = current period stock low price, c_{t} = current period stock close price.

1.2. Typical prices smoothing calculation.

sma_{20}\left ( tp \right )_{t}=\frac{1}{20}\sum_{i=0}^{20-1}tp_{t-i}

Where sma_{20}\left ( tp \right )_{t} = current period stock typical prices twenty days simple moving average, tp_{t} = current period stock typical price.

1.3. Typical prices mean absolute deviation or average deviation calculation.

adv_{20}\left ( tp \right )_{t}=\frac{1}{20}\sum_{i=0}^{20-1}\left | tp_{t-i}-\mu_{20}\left ( tp \right )_{t} \right |

Where adv_{20}\left ( tp \right )_{t} = current period stock typical prices twenty days mean absolute deviation or average deviation, tp_{t} = current period stock typical price, \mu_{20}\left ( tp \right )_{t} = current period stock typical prices twenty days rolling arithmetic mean.

1.4. Commodity channel index calculation.

cci_{20,0.015}\left ( tp \right )_{t}=\frac{tp_{t}-sma_{20}\left ( tp \right )_{t}}{0.015 \; adv_{20}\left ( tp \right )_{t}}

Where cci_{20,0.015}\left ( tp \right )_{t} = current period stock typical prices twenty days and constant factor commodity channel index, tp_{t} = current period stock typical price, sma_{20}\left ( tp \right )_{t} = current period stock typical prices twenty days simple moving average, adv_{20}\left ( tp \right )_{t} = current period stock typical prices twenty days mean absolute deviation or average deviation, 0.015 = constant factor.

2. R script code example.

2.1. Load R packages [2].

library('TTR')
library('quantmod')

2.2. CCI stock technical indicator data reading.

  • Data: S&P 500® index replicating ETF (ticker symbol: SPY) daily open, high, low, close, adjusted close prices and volume (2016).
SPY <- read.csv(‘CCI-Stock-Technical-Indicator-Data.txt’,header=T)   
SPY <- xts(SPY[,2:7],order.by=as.Date(SPY[,1]))

2.3. CCI stock technical indicator calculation and chart.

  • CCI technical indicator number of periods and constant factor not fixed and only included for educational purposes.
cci <- CCI(HLC(SPY),n=20,c=0.015)
barChart(SPY,theme=chartTheme(‘white’))
addCCI(n=20,c=0.015)
3. References.

[1] Donald R. Lambert. “Commodity Channel Index: Tool for Trading Cyclic Trends”. Commodities Magazine (now Futures Magazine). 1980.

[2] Joshua Ulrich. “TTR: Technical Trading Rules”. R package version 0.23-5. 2019.

Jeffrey A. Ryan and Joshua M. Ulrich. “quantmod: Quantitative Financial Modelling Framework”. R package version 0.4-15. 2019.

My online courses are closed for enrollment.
+