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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 1

Is it possible to pull M&A historical data for specific Tickers using the API?

I have successfully pulled M&A historical data with this:

df, err = ek.get_data("SCREEN(U(IN(DEALS)),BETWEEN(TR.MnAAnnDate,20190501,20190503))",["TR.MnAAnnDate","TR.MnATarget","TR.MnAAcquiror"])

I have not been able to do this for specific merchants. Is there a way to do that?

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythoncorporate-actions
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

Here's an example retrieving all the deals announced in the last 12 months (between today and the same date 1 year ago) where Qualcomm Inc is the acquiror or the acquiror's parent.

ek.get_data('SCREEN(U(IN(DEALS)), ' +
            'IN(TR.MnAParticipant(DealPartRole=A:AIP:AUP:AMP),' +
            '"4295907706"), BETWEEN(TR.MnAAnnDate,20180716,20190716))',
            ['TR.MnASDCDealNumber','TR.MnAAnnDate','TR.MnATarget',
             'TR.MnATargetPermId','TR.MnAAcquiror','TR.MnAAcquirorPermId',
             'TR.MnATargetFinAdvisor(Concat="|")',
             'TR.MnAAcquirorFinAdvisor(Concat="|")'])
To construct a Screener expression follow the wizard behind the Screener button under Thomson Reuters tab in Excel ribbon.
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