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

How to use python to get RIC of each components of a CDS index such as ITRAXX Europe Serie 35 (version 1) from Eikon?


For example ITRAXX Europe Serie 35 (version 1) has components as shown in the screenshot. I want to use python to get the RIC for each of them. What should I do? Thanks!

1717770540116.png


eikon#product#content
1717770540116.png (157.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.

1 Answer

· Write an Answer
Upvote
Accepted
7k 18 2 8

Hi @nicolas.cerrajero ,


You can perhaps use Refinitiv Data Libraries for python as below:


import refinitiv.data as rd
rd.open_session()
df = rd.get_data("ITEEU7Y35=",fields = [
                                    "TR.CDSConstWeight",
                                    "TR.CDSConstFITIID",
                                    "TR.CDSConstOrgName", 
                                    "TR.CDSConstCUSIP", 
                                    "TR.CDSConstRED6",
                                    ])
df

screenshot-2024-06-10-at-113232.png

This query returns some of the columns in the screenshot you have provided. I hope this helps, and If you are after another field, I would advice raising content query via Helpdesk.


Best regards,

Haykaz


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.