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
84 4 4 8

RIC not returning for Australian bonds

Hi,

I am trying to get the RICs for the following 3 ISINs but got the "no best match available" error. Please help thanks.

ek.get_symbology(["AU0000002073", "AU0000013740", "AU0000018442"], from_symbol_type="ISIN", to_symbol_type="RIC")
eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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.

Upvotes
Accepted
79.2k 251 52 74

@Alan Kar Lun.Tam

Please set bestMatch to False. It will return matched RICs.

data = ek.get_symbology(["AU0000002073", "AU0000013740", "AU0000018442"], from_symbol_type="ISIN", to_symbol_type="RIC", bestMatch=False)


matched.jpg (33.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.

Upvotes
3.8k 4 4 6

@Alan Kar Lun.Tam

You can also use a syntax with argument 'TR.RICS'. Here you can also have an an option specify a contributor of your choice:

ek.get_data(["AU0000002073", "AU0000013740", "AU0000018442"],"TR.RICS(Contributor=RRPS)")
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.