So I am trying to import the matplotlib.finance and I got the warning that 

The finance module has been deprecated in mpl 2.0 and will be removed in mpl 2.2. Please use the module mpl_finance instead.

I tried 

from matplotlib.mpl_finance import candlestick_ohlc

but I am seeing the error 

No module named mpl_financeHow can I create Candlestick charts

Author