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

How to retrieve time series of the constituents and weights of Russell Nomura Total Market Value Index via Eikon Data API?

Can you please let me know the RIC and fields to retrieve historical data of the constituents and weights of Russell Nomura Total Market Value Index(.FRURNVU) via Eikon Data API?

eikon-data-apipython#contentconstituents
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.

Hello @hiroko.yamaguchi1

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
Upvote
Accepted
5k 16 2 7

Hi @hiroko.yamaguchi1 ,


Thank you for your question. This would be the code to retrieve index constituents and the weights. See example for .FTSE.

df, err = ek.get_data('.FTSE', 
                      ['TR.IndexConstituentRIC' , 'TR.IndexConstituentName',
                       'TR.IndexConstituentWeightPercent','TR.IndexConstituentShares'])
df

screenshot-2023-04-20-at-140747.png

However, this code produces NAs for .FRURNVU. I have checked in Workspace and there is no constituent data for that there as well. To learn more about the reasons, I would advice raising a content query via MyRefinitiv.


Hope this helps.


Best regards,

Haykaz



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.