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 3

How to extract Fund Net Asset Value given Fund Lipper ID at the end of each month?

For example, I have Fund Lipper ID: LP60010877. I would like to obtain its net asset value at the end of each month. Is it possible to achieve it by using ek.get_data or ek.get_timeseries?

eikoneikon-data-apipython
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 @nicolas.cerrajero

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


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
79.1k 250 52 74

@nicolas.cerrajero

You can use the get_data method to get the net asset value.

Please try the following code.

df, err = ek.get_data(["LP60010877"],
                      ["TR.NETASSETVAL.Date","TR.NETASSETVAL"],
                      {'SDate':'2021-10-29','EDate':'2022-08-31','Frq':'M'})
df

The output is:

1663231701912.png

You can use the Data Item Browser tool to search for fields and parameters.


1663231701912.png (24.6 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.