Hi
I'm running this code as of two dates. In the output retrieved, the tickers change but the 'Percentage of Fund Assets' does not. Can you advise why not and/or tell me how to get the correct weights as of each date? Thanks
hldgs, err = ek.get_data(instruments='IWV',
fields = ['TR.FdSecurityOwnedRIC;TR.FdInvestorFilingDate;TR.FundPercentageOfFundAssets(EndNum=5000)'],
parameters={'SDate': '2019-12-31',
'EDate': '2019-12-31'})
hldgs2, err = ek.get_data(instruments='IWV',
fields = ['TR.FdSecurityOwnedRIC;TR.FdInvestorFilingDate;TR.FundPercentageOfFundAssets(EndNum=5000)'],
parameters={'SDate': '2018-12-31',
'EDate': '2018-12-31'})