I am trying to build some financial data using the Matplotlib.finance , and part of candlestick2 working fine. However, the `volume_overlay 'function does not show anything on the graph, although the second axis scales correctly.
There is a similar question here, but it does not solve the problem, it simply provides a way to create your own volume overlay.
# Get data from CSV data = pandas.read_csv('dummy_data.csv', header=None, names=['Time', 'Price', 'Volume']).set_index('Time')
Can someone show me what I am missing? Or is the volume_overlay function volume_overlay ?
EDIT
Data is downloaded from http://api.bitcoincharts.com/v1/trades.csv?symbol=mtgoxUSD - inserted into Notepad ++, and then the search for and replacing "" with "\ n" is performed.
Jamie bull
source share