I am trying to import matplotlib.finance module in python so that I can make a Candlestick OCHL graph. My matplotlib.pyplot version is 2.00. I\'ve
matplotlib.finance
matplotlib.pyplot
Simply use pip install mpl_finance for Windows or pip3 install mpl_finance for Linux/Unix for installation.
pip install mpl_finance
pip3 install mpl_finance
Then use from mpl_finance import candlestick_ohlc to call the library in the Jupyter notebook!
from mpl_finance import candlestick_ohlc