I am using the functions get_timeseries and get_historical_price_summaries to create a table that contains high, low, open, close, volume (from get_timeseries) and bid and ask (from get_historical_price_summaries) for german stocks. The timestamps indicate (in both tables) that the first trades occur at 08:00 AM. However, I would have expected 09:00 AM as the exchange opens at 09:00.
If I use the Price chart function in the refinitiv app, I get the following output (for Adidas):
However, using the following code:
data = ek.get_timeseries('ADSGn.DE', start_date = start_date, end_date = end_date, interval='minute')
print(data)
returns:
the same holds for:
data= rdp.get_historical_price_summaries('ADSGn.DE',
rdp.Intervals.ONE_MINUTE,
start = start_date,
end = end_date,
fields = ['OPEN_PRC','HIGH_1','LOW_1', 'BID', 'ASK'])