Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Chapter 5: Computing and Plotting Technical Indicators

Learn how to compute and plot 10 types of Technical Indicators including Trend Indicators, Momentum Indicators, Volatility Indicators and Volume Indicators.

List of Recipes in this chapter

  1. Trend Indicator: Simple Moving Average
  2. Trend Indicator: Exponential Moving Average
  3. Trend Indicator: Moving Average Convergence Divergence
  4. Trend Indicator: Parabolic Stop and Reverse
  5. Momentum Indicator: Relative Strength Index
  6. Momentum Indicator: Stochastic Oscillator
  7. Volatility Indicator: Bollinger Bands
  8. Volatility Indicator: Average True Range
  9. Volume Indicator: On Balance Volume
  10. Volume Indicator: Volume Weighted Average Price

[Click here to VIEW Chapter 5 Jupyter Notebook & interact with charts on nbviewer]

Requirements

  • Python 3.7+
  • Additional Python Packages required for this chapter can be installed as follows -
$ source <virtualenv>           # optional, if you use a virtualenv
$ cd <path-to-this-folder>
$ pip install -r requirements.txt