For a deeper look into our Eikon Data API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials | Articles
@j.rasch Hi - yes you can use our RDP Search API in order to confirm the correct RIC. If an instrument has been delisted the new delisted RIC will be indicated:
import refinitiv.dataplatform as rdp rdp.open_desktop_session('Your App Key Here') rdp.search('CLF.GQ')
Now if its not delisted - say VOD.L:
rdp.search('VOD.L')
So the entry in row [1] will always give you the correct RIC - delisted rics have a ^ character in them. I hope this can help.
not sure if this is of interest, but there seem to be a lot of exceptions to this rule. It doesnt work for
"0IEO.L", "0LC9.L", "GWPH.O","NTLA.O"
for example. Sometimes the RIC columns dont exist at all, sometimes the new rics are not in line 1, etc. Trying to work around it..
I'm not sure we can always rely on the logic described by @jason.ramchandani. RICs may be recycled. It doesn't happen very often, but it may happen. The infamous example is that the RIC "C" used to refer to Chrysler at one point and now it refers to Citigroup. ISINs are not reused. If you have an ISIN you can always get the current RIC. But all you have is a RIC and the RIC has been reused, then there's ambiguity and you need additional criteria to arrive to the result you're looking for. In the example of "C", if all you have is the RIC, it's impossible to say whether you're looking for Chrysler or for Citigroup without some assumptions or additional search criteria.