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

Missing data for 6/9/17

I'm trying to pull timeseries data via the python API and there is no data for 6/9/2017.

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.

Hi @john.vanfechtmann
Would you mind providing the request you're using?

There seems to be no data again this morning. It looks to have stopped publishing around 2PM EST yesterday.

Can you please look into what is causing the inconsistencies in the availability of data? I am cross checking using the excel plugin and there are no issues there.

today = datetime.today()

hist = today+timedelta(days=-90)

TYc1 = ek.get_timeseries(['TYc1'], fields='volume', start_date=hist, interval='hour').rename(columns={'VOLUME':'TYc1'})

TYc2 = ek.get_timeseries(['TYc2'], fields='volume', start_date=hist, interval='hour').rename(columns={'VOLUME':'TYc2'})

Thank you

Hello @john.vanfechtmann,

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

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

Hi @john.vanfechtmann

I have reproduced the problem as you described. It appears that the default value for end_date parameter is set incorrectly by get_timeseries method. I escalated the issue to the development. In the meantime as a workaround you can set the value of end_date explicitly, e.g. end_date=timedelta(0) or end_date=datetime.utcnow().

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.

Thank you, this seems to have worked

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.