Hi Team. I understand ek.get_timeseries method on Eikon CodeBook/API always return timestamp in GMT/UTC(based on https://community.developers.refinitiv.com/questions/72784/eikon-data-api-time-series-timezone.html) but how come rd.get_history is returning GMT-1
Here is the sample formula:
For ek
df = ek.get_timeseries('AAPL.OQ',
start_date='2023-11-03', end_date='2023-11-07',
interval='hour')
df
For rd
import refinitiv.data as rd
rd.open_session()
rd.get_history(
universe=["AAPL.OQ"],start="2023-11-03",end="2023-11-07",
fields=["TRDPRC_1"],
interval="60min",)
Here is the out