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 |