Hi, I am trying to get intraday close prices only for the same 5 minutes every day (ie 1300-1305 ET). May I know how I can modify this function to:
- only get data during that period of time daily, and
- change the time zone to Eastern Time?
response = historical_pricing.summaries.Definition(
"ESc1",
start = timedelta(-3),
end = timedelta(0),
interval=Intervals.ONE_MINUTE,
fields = ["TRDPRC_1"]
).get_data()
Thank you very much!