Receive RICs of all quotes given one ISIN of a company

Hi everyone,

if I enter a RIC of a companys primary issue in the search bar and if I select "All" in "Show Quotes for", then I see all the quotes that are available for that company (i.e. ordinary shares, preferred shares, depository receipts).


If I try to get the same list of all these quotes using the eikon API , I then I do get the same without the depository receipts. I use the following command:

data = ek.get_symbology(["DE0007100000"], from_symbol_type="ISIN", to_symbol_type="RIC", best_match=False)


Do you have any suggestions haw I can add the depository receipts?


Thanks in advance!

Best Answer

  • @Eikon10 You could also try our our excellent Search API:

    rdp.search("DE0007100000",top=1000)

    1627981085871.png

    This should be very comprehensive. You can also use the Search API for more complex searches. There is an excellent article on the RDP Search API here. I hope this can help.


Answers