New posts are disabled while we improve the user experience.

You can browse the site, or for urgent issues, raise a query at MyAccount.

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-apipythonworkspacerefinitiv-dataplatform-eikonworkspace-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

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 78 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.