Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
3 0 0 2

Unable to get economic indicators historical data

I'm using the eikon api and trying to get historical data from "aBRXOGAPR". I wrote 'ek.get_timeseries("aBRXOGAPR" , start_date= "2010-01-02", end_date="2023-05-02)' and it is returning :

2023-05-24 16:55:29,727 P[20964] [MainThread 7108] Error with aBRXOGAPR: Interval is not supported
2023-05-24 16:55:29,729 P[20964] [MainThread 7108] aBRXOGAPR: Interval is not supported |

I tried with several time ranges and I'm getting the same error

eikon-data-api#technologypython apitime-series
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvote
Accepted
14.2k 30 5 10

Hi @guilherme.matt ,

Mostly the economic indicators timeseries data is available in quarterly and/or monthly interval. However, I tried both and found that these interval aren't supported.

You can used the RD Library to retrieve this data, for example

import refinitiv.data as rd
rd.open_session()

rd.get_history("aBRXOGAPR")

1685000469859.png


1685000469859.png (18.4 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.