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 1

No data available for the requested date range

I've been using this formula: ek.get_timeseries(['ARSMPR=BCRA'], fields = ['CLOSE'], start_date = '2020-01-01') but this week it began to show the message: "EikonError: Error code -1 | ARSMPR=BCRA: No data available for the requested date range | " and now sometimes work but generally not.



eikon-data-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.

Hi @psanches,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.


Thanks,

AHS

Hello @psanches ,

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
Upvote
Accepted
10.2k 18 6 9

@psanches So I can replicate the issue. I have raised a ticket for this (Case Number: 10982534) but in the meantime you can get the data using our RDP Historical Pricing Service which is also available. You need to pip install refinitiv.dataplatform libraries first:

import refinitiv.dataplatform as rdp
rdp.open_desktop_session('YOUR APPKEY HERE')

df = rdp.get_historical_price_summaries('ARSMPR=BCRA',
                                        start='2020-01-16T19:14:00',
                                        end = '2022-02-22T19:18:00',
                                        interval=rdp.Intervals.DAILY
                                        )

df

1645716324947.png


I hope this can help.


1645716324947.png (83.0 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.