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.

1 Answer

· Write an Answer
Upvotes
Accepted
69.4k 211 49 69

@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.