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
9 5 4 5

Unable to download Fund price

Hi, i'm trying to download some funds Closing Prices from Eikon DataStream using Python. Using get_data normally does the trick, but for some funds it does not. If i look for those ISIN on Eikon directly i can find them and their RIC. Using the RIC and get_timeseries allows me to get the data i need. But since i have many ISIN with this issue i need to automate the ISIN-RIC transformation. get_symbology can't find the related RICs so i'm unable to finish my task. Any thoughts?

To reproduce use the ISIN LU0106820292 (RIC LP60052678).

Thanks for your time!

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

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

You can add bestMatch=False argument to get_symbology call to get the list of RICs corresponding to an ISIN instead of a primary or best match RIC:

ek.get_symbology("LU0106820292","ISIN","RIC",bestMatch=False)
Or perhaps better you can use get_data method to convert ISIN to a RIC:
ek.get_data("LU0106820292","TR.RIC")
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.

Great solutions! Thanks a lot.

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.