How to fix mpl_finance package for MatPlotLib?

sgerbhctim picture sgerbhctim · Jun 22, 2017 · Viewed 9.2k times · Source

Getting this error message:

MatplotlibDeprecationWarning: 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.

How do I put in place the mpl_finance package instead. I have it installed in pip, but what is the proper import phraseology?

import datetime as dt
import matplotlib.pyplot as plt
from matplotlib import style
from matplotlib.finance import candlestick_ohlc
import matplotlib.dates as mdates
import pandas as pd
import pandas_datareader.data as web
from googlefinance import getQuotes
import json
from datetime import datetime
from forex_python.converter import CurrencyRates
from yahoo_finance import Share

Answer

omdv picture omdv · Jun 22, 2017

All code for matplotlib.finance moved to a separate repository. Here is an example of usage. To answer your question:

from mpl_finance import candlestick_ohlc