I often see this in the context of matplotlib and open-high-low-close, but I'm wondering if you can add a volume overlay within the pandas framework. The final graph we would want would be close to the first one here: (Matplotlib - Finance volume overlay )
Say we have a DataFrame like such:
num rolling_30 rolling_10 rolling_60 Volume
Date
2015-06-23 0.000219 0.000149 0.000168 0.000183 2
2015-06-25 0.000489 0.000162 0.000200 0.000188 3
2015-07-01 0.000164 0.000163 0.000190 0.000186 1
2015-07-02 0.000190 0.000166 0.000190 0.000187 1
2015-07-03 0.000269 0.000171 0.000198 0.000180 1
2015-07-04 0.000935 0.000196 0.000282 0.000193 2
2015-07-08 0.000154 0.000196 0.000288 0.000188 1
2015-07-11 0.000274 0.000202 0.000305 0.000190 1
2015-07-13 0.000872 0.000228 0.000380 0.000201 9
How can we get the ['num','rolling_30','rolling_10','rolling_60'] line chart with the bottom of the chart listing the daily volume? I can do a secondary_y to get volume on the right, but honestly that looks terrible. Need it to be the traditional volume bar-graph at the bottom of the chart.