Hi all,
I'm trying to superimpose two stock price graphs, and as you can see below, it prints separately. I'd like to plot them together so I can easily compare. Any help or reference will be greatly appreciated. Thank you.
Best,
Harry
prices = get_pricing(['mu'], start_date="2018-1-29", end_date="2018-1-29", fields='price', frequency='minute')
prices_et = prices.tz_convert('US/Eastern')
prices_first_30min_0129 = prices_et.between_time('9:30','10:00')
prices = get_pricing(['mu'], start_date="2018-1-30", end_date="2018-1-30", fields='price', frequency='minute')
prices_et = prices.tz_convert('US/Eastern')
prices_first_30min_0130 = prices_et.between_time('9:30','10:00')
import matplotlib.pyplot as plt
prices_first_30min_0129.plot()
prices_first_30min_0130.plot()
plt.show()