Hi,
I'm trying to look at various stocks over the past 10 years. I have several stocks that are non-USD. How can I amend the following query to return the USD version of TRDPRC1:
ld.open_session()
response = historical_pricing.summaries.Definition(
universe = ['AAPL.O', 'SHEL.L''],
interval = historical_pricing.Intervals.DAILY,
fields = ['TRDPRC_1', 'TRNOVR_UNS'],
start = dt.date(2015, 5, 18),
end = dt.date(2025, 5, 19), ).get_data()
df = response.data.df
ld.close_session()
Kind regards
Jas