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

RIC of delisted companies

Hello,

I have a list of permid, e.g.,

['4296383853', '4295908768'] 

I need to retrieve the correspnding RICs using the eikon API with python.

I tried this code:

df, err = ek.get_data(['4296383853', '4295908768'], ['TR.CompanyName', 'TR.RIC'])
df
print(df)

This is what I get:

   Instrument       Company Name   RIC
0  4296383853    Quantronix Corp  <NA>
1  4295908768  Advance Ross Corp  <NA>

Both companies have been delisted and their RIC from the Office search widget are, respectively:

['QUAN.O^J92', 'AROS.O^A96']

The problem is that I have a long list of companies like this, and I cannot search them manually, one by one.

I need to have these RICs to recover their historical stock prices. Is there a way to find these RICs using the eikon API?

Thank you.

eikon-data-api#technologyrics
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 @Stefano Breschi ,

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

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

Thanks,
AHS

Upvotes
Accepted
17.4k 82 39 63

Hi @Stefano Breschi

Try using the symbology API to perform the conversion:

1706566072129.png



1706566072129.png (30.1 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.

Thank you so much, Nick. It works perfectly.
Upvotes
1 0 0 1

Thank you, Nick. This works perfectly.

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.