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
49 3 6 12

Are there any ways to get a list of the RICs of all the companies covered by Refinitiv ESG?

Are there any ways to get a list of the RICs of all the companies covered by Refinitiv ESG so that users for Eikon Data API can set all the RICs in their API call to retrieve the ESG data for all the companied covered and available?

eikon-data-api#product
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.

1 Answer

· Write an Answer
Upvote
Accepted
10.2k 18 6 9

@hiroko.yamaguchi1 Thanks for your question - there is indeed a pretty straightforward way of doing this using the screener app. There is a boolean field called 'TR.HasESGCoverage'. This can be used in the following screener query to generate the universe. However, there is a limit of 5000 companies that can be returned per screen - therefore I have added the TR.HeadquartersRegion with Europe, Africa, Oceania in one call, Asia and Americas in 2 separate calls.

df = rd.get_data(["SCREEN(U(IN(Equity(active,public,primary))/*UNV:Public*/), TR.HasESGCoverage==true, IN(TR.HeadquartersRegion,""Europe"",""Africa"",""Oceania""), CURN=USD)"],["TR.CommonName;TR.HasESGCoverage;TR.HeadquartersRegion"])
df

1675938554016.png

df1 = rd.get_data(["SCREEN(U(IN(Equity(active,public,primary))/*UNV:Public*/), TR.HasESGCoverage==true, IN(TR.HeadquartersRegion,""Asia""), CURN=USD)"],["TR.CommonName;TR.HasESGCoverage;TR.HeadquartersRegion"])
df1

1675938578296.png

df2 = rd.get_data(["SCREEN(U(IN(Equity(active,public,primary))/*UNV:Public*/), TR.HasESGCoverage==true, IN(TR.HeadquartersRegion,""Americas""), CURN=USD)"],["TR.CommonName;TR.HasESGCoverage;TR.HeadquartersRegion"])
df2


I hope this can help.


1675938554016.png (129.4 KiB)
1675938578296.png (140.1 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.

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.