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
mpl_finance is no longer part of matplotlib. Install the module directly from gitHub via pip
mpl_finance
matplotlib
pip install https://github.com/matplotlib/mpl_finance/archive/master.zip
and import it with
from mpl_finance import candlestick_ohlc
Then it works the same as before.