Hi, pretty new to this so apologies if I'm making basic mistakes...
I'm trying to get daily trade volumes. I initially tried a pipeline with this column:
USEquityPricing.volume.latest
... but the results seemed too small e.g.
- Apple 06/15/2018 = 15.7M
- Yahoo finance reported 61.2M
Is the time period smaller than a day? I can't tell from the docs.
I then tried this:
from quantopian.research import volumes, symbols
aapl_close = volumes(
assets=symbols('AAPL'),
start='2018-06-10',
end='2018-06-15',
)
import pandas as pd
pd.DataFrame({
'AAPL': aapl_close
}).tail()
-- the docs say this should be a day by default but this gives 28.4M
Confused!