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
7 1 0 4

Structure RICs

Hi is there any way to find about all RIC connected to a specific RIC
Example: For 3 Month SOFR Futures its RIC is SRA, for its Future Outright chain its 0#SRA: for its Futures spread chain its 0#SRA-:, for its futures butterfly chain its 0#SRABF-: similarly for condor chain its 0#SRACF-:.

I found these using hit and trial. Is there any page or any way to get all the structure chains connected to one RIC?

eikon#contentrefinitiv-data-platformrics
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
1.5k 5 3 6

Hi @dhruv.singh.1

You can use this approach to get RIC codes that share the same Ric Root.

You can modify the RicRoot and add '*', like 'SRA*' to get more results but some may not be relevant. I know that it is not perfect but can help with identifying RIC codes.

import refinitiv.data as rd
rd.open_session()

rd.discovery.search(
filter = "RicRoot eq 'SRA' and IsChain eq true",
select="RIC,CommonName"
)
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
18.7k 85 39 63

Hi @dhruv.singh.1

It's probably best to go through the helpdesk or use the "Get Help & Support" (F1) within Worksspace. They will bring in a content specialist to determine if it is possible to use a root chain that lists all available chains for any given RIC.

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.