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
1 0 0 0

Replacing get_time_series with get_data due to field changes for RIC for timeseries data

Previously, the I used the python package of Eikon and utilized the get_time_series function to get data for RIC : BBF-CCT-RIBELB. This would pull fields like Open, Close, High, Low and Volume for this RIC.

However, due to recent changes to the underlying fields - I am unable to pull historical data using get_time_series as the data is not stored under the fields fetched by this function.

We are using the get_data function to fetch the information now from fields like CF_CLOSE, CF_DATE etc. However, get_data only returns 1 data point and not a historical timeseries despite using 'SDate' and 'EDate' in the parameters.


get_time_series returns volume instead of prices:

get_data only returns 1 data point despite SDate and EDate parameters:

Please let me know how I can pull historical price information for this RIC using the Eikon python package since get_timeseries does NOT work for this RIC anymore.

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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.

@kfernandes

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.
Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

The best way to get these timeseries is to use RDP Library

rdp.get_historical_price_summaries('BBF-CCT-RIBELB',
                                   interval=rdp.Intervals.WEEKLY)
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.