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
43 5 2 7

TR.PRICECLOSE not updating since 2022-04-14

For a few days now, the TR.PRICECLOSE data does not seem to be updating anymore.

For example, if I try to download the last close for INGA.AS, it returns the close of 9.448 per 2022-04-14.

eikon.get_data("INGA.AS", ["TR.PRICECLOSE", "TR.PRICECLOSE.DATE"])

where I expect to get the close of 9.73 on 2022-04-20.

This happens also for all other symbols. Adding start and/or end dates doesn't help either.

Any help would be appreciated.

eikoneikon-data-apipythonapi
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.

it seems to be an eikon issue, the support team is working on solving this.

Hello @sim19

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

@sim19

Hi,

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

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
1.3k 3 2 4

Hi @sim19 ,

Sorry if you didn't find what you expect with get_data function.

If you're interested only in Price Close, get_timeseries function is more suitable than get_data (which is more dedicated for Fundamental & Reference data) and you can request last value with this way:

eikon.get_timeseries("INGA.AS", ["CLOSE"], count=1)

Result:

INGA.AS     CLOSE
Date             
2022-04-21  9.859

If you need value for a specific date:

eikon.get_timeseries("INGA.AS", ["CLOSE"], start_date="2022-04-20", end_date="2022-04-20")
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.

Thanks for your response. After contacting the support team it turns out there is an issue with the data delivery.

The reason for not using get_timeseries is that easily hits data limits.

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.