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

How do I get historical ownership summary of a company in terms of insiders and institutional with python?

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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.

Upvote
Accepted
39.4k 77 11 27

Here's an example retrieving top 30 investors in Air Canada as of 01-Apr-2019.

ek.get_data('AC.TO',['TR.InvestorFullName', 'TR.PctOfSharesOutHeld', 
                     'TR.SharesHeld', 'TR.HoldingsDate', 
                     'TR.SharesHeldChange'],
           {'SDate':'2019-04-01', 'EndNum':'30'})

I think you would benefit from looking at this tutorial, which talks at length about metadata discovery (finding field names and parameters) for use with Eikon Data APIs.

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.

Is it possible to loop this code over several monthly dates, from 2019-04-01 to present?

@ricardo.henriquez

When asking a new question, please always start a new thread. Old threads with accepted answers are not monitored by forum moderators. If you need to reference an existing thread, include a link in your post.
Yes, you can create a loop over a set of monthly dates and retrieve top X investors for a stock for each date in the set.

Upvotes
1 5 4 7

Thanks so much!

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.