I am trying to plot a Candlestick chart using Matplotlib with data I am acquiring for a REST API call. However since the call uses a unique access token I\'ve downloaded a s
Just change your width on the chart and it will be fine:
candlestick_ohlc(ax1, ohlc, width=0.001, colorup='#77d879', colordown='#db3f3f')
Tested using your data and it looks good.