API Eikon RICs Information with Minute Frequency back to 2022 and 2021

Hi,

I'm trying to retrieve historical information of a specific RIC back to 2022 (also 2021 I need) with a "minute" frequency via the Eikon API but there seems to be no data available (I'm using Python). Could anyone help to understand if there are any workarounds or any other function or way to recover the date. Below is the code and the related error. Thanks in advance.

#code

import refinitiv.dataplatform.eikon as ek

ek.set_app_key('MY API KEY')

df = ek.get_timeseries(['GOOGL.O'],

fields = ['CLOSE','VOLUME','OPEN','LOW'],

start_date='2022-10-14', end_date='2022-11-14',

interval='minute')

print(df)


#error --> RDPError: Error code Error | GOOGL.O: No data available for the requested date range |

Best Answer

  • @Leonardo.Buffoni

    Thank you for reaching out to us.

    I think that the Intraday time series database only stores up to 1 year of history.

    import refinitiv.dataplatform.eikon as ek
    ek.set_app_key('<App key>')

    df = ek.get_timeseries(['GOOGL.O'],
    fields = ['CLOSE','VOLUME','OPEN','LOW'],
       start_date='2022-11-10', end_date='2022-11-16',
    interval='minute')

    print(df)

    1700123029437.png