When a company is listed on several markets, it has different RICs but a single ISIN or CUSIP.Is there a way to obtain ALL the RICs associated with an ISIN or CUSIP?
Hi @Nabil Edriss Sanchez1 ,
You can do this in Python with Eikon + Codebook app, open the __Example__/01.Data Retrieval and Discovery / 01.04.Eikon (Workspace) Data API / Eikon_Data_API__Symbology.ipynb notebook:
Absolutely grateful for the response!!
May I ask how to get all RIC list for a certain ISIN or CUSIP in DSS API?
Hello @pf, It's been some time since your reply, but I was wondering what is the corresponding function for lseg.data library?
@aKanik
You can use the Search API in the LSEG Data Library for Python.
res=search.Definition( view = search.Views.EQUITY_QUOTES, filter = "AssetState ne 'DC' and IssueISIN eq 'US5949181045' and AssetType eq 'EQUITY'", select = 'RIC', top = 10000 ).get_data() res.data.df
For more information, please refer to this Building Search into your Application Workflow article.
If you have any further questions, please post them on the forum as new questions.