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 4 2 5

how to fetch reported total assets of an Europe listed company in USD via eikon API?

Hi there,

when I fetch the reported total asset of a stock by using:

eikon.get_data(RIC, fields = ['TR.TotalAssetsReported'], parameters={'SDate': date})

How can check the default currency of the total asset? is there a way to convert the assets into USD?

thank you so much!

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apidataforex
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 @pengxin1211

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes, please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

AHS

Hello @pengxin1211

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

@pengxin1211, please be informed that a reply has been verified as correct in answering the question, and has been marked as such. Thanks, AHS

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

I think you'll benefit from looking at this tutorial, which talks at length about metadata discovery for use in Eikon Data APIs.
To answer your specific question, TR.TotalAssetsReported.currency returns the currency of TR.TotalAssetsReported. And Curn parameter allows you to specify in which currency you want balance sheet items to be returned. E.g.

ek.get_data('VOD.L', ['TR.TotalAssetsReported', 
                      'TR.TotalAssetsReported.currency'])
returns 145,611,000,000 EUR.
And
ek.get_data('VOD.L', ['TR.TotalAssetsReported', 
                      'TR.TotalAssetsReported.currency'],{'Curn':'USD'})
returns 179,407,850,964.737 USD.
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.