I am trying get RIC for an ISIN(NL0000235190) from a specific exchange Frankfurt Stock Exchange(Exchange Code: FRA). How can I get this in python API? Result is AIRG.F, if I try Tr.PrimaryRic I get AIR.PA
New posts are disabled while we improve the user experience.
You can browse the site, or for urgent issues, raise a query at MyAccount.
I am trying get RIC for an ISIN(NL0000235190) from a specific exchange Frankfurt Stock Exchange(Exchange Code: FRA). How can I get this in python API? Result is AIRG.F, if I try Tr.PrimaryRic I get AIR.PA
get_symbology method of Eikon Python API can only return the primary RIC.
Using send_json_request method you can retrieve all RICs corresponding to an ISIN, e.g.
ek.send_json_request('SymbologySearch', {'symbols': ['NL0000235190'], 'to': ['RIC'], 'from': 'ISIN', 'bestMatchOnly': False})Then you can extract from the returned list of RICs the RIC from Frankfurt Stock Exchange based on exchange suffix (".F").