Hi,
I'm running the following python code to retrieve historical intraday 1 minute data from 2021-01-01 to 2022-01-01. But the results are empty dataframe. What's wrong in this case?
response = historical_pricing.summaries.Definition(
universe = "CLv1",
start = "2021-01-01",
end = "2022-01-01",
interval=Intervals.MINUTE,
adjustments = [
Adjustments.EXCHANGE_CORRECTION,
Adjustments.MANUAL_CORRECTION
]
).get_data()
df = response.data.df
df
Thank you very much in advance!