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

Get the MarketCap in USD

Hello, Is it possile to have the MarketCap in USD.

For example : CAGR.PA, the Market Cap of this Ric is in local currency (EUR) but i want in USD. Is it possible in python?

The formula in excel is =@TR("CAGR.PA@RIC","TR.CompanyMarketCap(ShType=OUT)","Curn=USD")

What is the instrument in pyhton ?

Thx


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.

1 Answer

· Write an Answer
Upvote
Accepted
18.2k 21 13 21

Hi @mohammed.mroweh

Please see the detailed answer in this post.


df, err = ek.get_data(
    instruments = ['CAGR.PA'],
    fields = ['TR.CompanyMarketCap(Curn=USD,ShType=OUT)']
)
display(df)
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.

It works. Thanks.

slitherio

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.