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

Institutional Ownership Data to R

Dear community,

I am wondering whether it is possible to retrieve institutional ownership data into R, like in this example for python:

https://community.developers.refinitiv.com/questions/74994/historical-institutional-ownership-thomson-reuters.html

I tried to do it with get_data("IBM", fields='TR.CategoryOwnershipPct'), but I don't know how I can identify Statistics Type = 1 - Investor Type and whereI can define the date for which data is needed.

Thank you!

eikonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apieikon-data-api-r
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
78.8k 249 52 74

@Alina Steshkova

The StatType and SDate can be specified in the parameters.

get_data("IBM", 
         fields=list('TR.CategoryOwnershipPct.Date','TR.CategoryOwnershipPct'),
         parameters=list('StatType'=1,'SDate'='2020-12-31')
         )

You can use the Data Item Browser (DIB) tool to find fields and parameters. For more information, please refer to the following article(https://developers.refinitiv.com/en/article-catalog/article/how-to-discover-available-fields-for-data-grid-service-on-jet-ap).


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

Thank you very much for your help! Everything works perfectly!

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.