Below is a snippet of the code I am using to analyze the volume of ES (s&p futures).
esVolume = (es['Volume']).loc['2023-03-15 09:00:00-04:00':'2023-03-15 10:29:00-04:00']
plt.plot(Time.minute(900,1030), esVolume)
Why does the x-axis include increments 960-999 when the domain of the graph is [900,959] U [1000,1030]
?