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

Is there any way that I can retrieve the list of analyst names and their respective IBES rating/score (from Estimates tab on Workspace) via Python API?

I've checked with the helpdesk, and there is currently no way of retrieving the full list of top analysts covering the stocks and their respective IBES rating/scores, other than accessing TOPA on the desktop app. I am trying to find ways that can extract this information more systematically via the Python API.topa.png

pythonworkspace#technology#productapi
topa.png (216.4 KiB)
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 @austin.chu ,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?
If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
10.2k 18 6 9

@austin.chu Thanks for your question - so that is not correct - you can in fact retrieve analyst details as follows - is this the kind of thing you meant? :


import refinitiv.data as rd
rd.open_session()
df4 = rd.get_data(['2330.TW'], ['TR.RevenueEstValue(Period=FY1).calcdate',
                              'TR.OverallAnalystRecommendationRating1to5TTM.analystname',
                              'TR.OverallRatingAnalystCode.brokername',
                              'TR.OverallRatingAnalystCode',
                              'TR.OverallRatingAnalystCode.instrument',
                              'TR.SingleStockRatingEstimate1to5',
                              'TR.SingleStockRatingEstimate1to100',
                              'TR.OverallAnalystEstimateRating',
                              'TR.OverallAnalystRecommendationRating1to5TTM',
                              'TR.OverallAnalystRecommendationRating1to5T24M',
                              'TR.RevenueEstValue(Period=FY1)'
                               ])

df4

1711542939392.png

I hope this can help.



1711542939392.png (160.5 KiB)
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.

@jason.ramchandani01 this is very helpful - much appreciated!

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.