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 1 3

constituent bonds of a certain CDS

How to retrieve the constituent bonds of a certain CDS through python API?

refinitiv-dataplatform-eikon#technologypython apibonds
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
6.2k 18 2 8

Hi @oriana.xfu ,


Please check the following workflow to get ref obligations for the singe name CDS

1. get constituent bond ISINs:

df, err = ek.get_data('AAPL5YUSAX=R', fields = ["TR.BondISIN"])
df

screenshot-2024-05-03-at-125850.png


2. Request CDS related fields and filter the results to show the bonds with Metrkit ref Obligation name:

ref_obligations, err = ek.get_data(df['Bond ISIN'].to_list(), fields = ["TR.CDSRED9", "TR.FiCurrency", "TR.CPTYPE", "TR.ADF_COUPON", "TR.FIMaturityDate", "TR.FiIsConvertible", "TR.CDSMarkitOBName", "TR.CDSMarkitSeniority"])
ref_obligations[ref_obligations['Markit Ref Oblig. Name'] != 'NA']


screenshot-2024-05-03-at-130910.pngBest 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.

Hi @aramyan.h, the code works well, thanks for your help.

Upvote
6.2k 18 2 8

Hi @oriana.xfu ,


If I got your question right and ITAIG5Y40= is a type of CDS RIC you might be after, then you can perhaps use the following code:

df, err = ek.get_data('ITAIG5Y40=', fields = [ "TR.CDSConstWeight", "TR.CDSConstFITIID", "TR.CDSConstOrgName", "TR.CDSConstCUSIP", "TR.CDSConstRED6"])
df

screenshot-2024-04-09-at-110313.png

Hope this helps.


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.

Thank you for your help @aramyan.h. I note that your example (ITAIG5Y40=) refers to an index CDS. What I'm trying to retrieve are the reference obligations of specific single-name CDS instruments (e.g., AAPL5YUSAX=R), while Eikon returns nothing on the above-mentioned code. Is there any way to achieve this?

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.