I am attempting to pull data < 1month, preferably daily timeseries performance data for funds and etfs ie: for
LP68467397 & LP68402195. Kindly help!
timeseries.png
@J13513, If you need daily performance for funds (Lipper data), you need to check with your account manager on other products. Lipper do have desktop and data feeds products able to provide daily performance.
If you insist on using Eikon API, the best I can find is weekly performance up to 1 year. You can use the function under "Lipper Funds":
"TR.FundRollingPerformance(RollTimeFrame=1Y Interval=W)"
Hi @J13513
To get time series data for funds it is advised to use NAV values.
Here is the example:
df, err=ek.get_data(['LP68467397','LP68402195'],['TR.NETASSETVAL.date','TR.NETASSETVAL'], {'SDate':'-1AM', 'Edate':'0D'})df
The fund prices (e.g. NAV) from Lipper is the raw price reported by fund houses, it may not reflect the total return performance of the fund. For example, the NAV is not adjusted for distributions paid out nor events like unit split / merge.
Thank-you once again @Wan Po.Lee - this is very useful. I do indeed have access to the 'Lipper for Investment Management' - will check this out also.