Hi,
I have received a formula for retrieving fund information, however, in order to apply the formula to multiple funds I am trying to translate it to python.
However, I am encountering a syntax error. Can I remove the limitation of 5000 firms or add a limitation of 1000 firms if the number of retrieved funds is becoming too large?
Formula I received from EIKON Support:
=@TR($C$2;"TR.FundHoldingRIC;TR.FundHoldingName;TR.FundLatestFilingDate;TR.FundPercentageOfFundAssets/100";"StartNum=1 EndNum=5000 CH=Fd NULL=BLANK")
Current Code Python:
constituents, err = ek.get_data(['US4642872265'],['TR.FundHoldingRIC','TR.FundHoldingName','TR.FundLatestFilingDate','TR.FundPercentageOfFundAssets'])
constituents
Error:
SyntaxError: invalid syntax
I appreciate the support!
Best,Gabriel