For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 0

I'm trying to figure out if I can just request the latest UK corporate bond issuance (deals) through the Python-based Eikon API. Is this currently supported?

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikon
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

1 Answer

Upvotes
Accepted
39.2k 75 11 27

You can use Screener with the Universe set to "Deals" and Asset Class set to "Bonds". E.g. the following expression retrieves bond issue deals with issue date last week, by non-government issuers headquartered in the UK.

screener_exp = ('SCREEN(U(IN(DEALS)/*UNV:DEALSBOND*/),TR.NIisECM=False,'
                'relativedate(TR.NIIssueDate,LW), IN(TR.NINationHQ,"GB"),'
                'NOT_IN(TR.NITRBCEconomicSector,"62"), CURN=USD)')
ek.get_data(screener_exp,
           ['TR.NIIssueDate','TR.NIIssue','TR.NIIssuerPermId',
            'TR.NIIssueType(Concat="|")','TR.NITransactionStatu',
            'TR.NIProceedsAmtInclOverallotSoldAllMkts(Scale=6)',
            'TR.NISecurityTypeAllMkt'])

For more details on using Screener in Eikon Data APIs, see the article titled "Find Your Right Companies with SCREENER | Eikon Data APIs(Python)".

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea