How to get monthly or quarterly changes in a fund holdings, sector and country allocations? With the below code I'm only able to get the recent holdings and not the historical holdings.
Python
column_fields = [
"TR.FundHoldingRIC",
"TR.FundHoldingName",
"TR.FundPercentageOfFundAssets",
]
refinitiv_data, err = ek.get_data(["SPY"], column_fields, date_paremters)
refinitiv_data
How to get the same historical weights for the below allocations?
Asset allocation -> ["TR.FundAssetAllocation", "TR.FundAllocationName"]
Country allocation -> ["TR.FundCountryAllocation", "TR.FundAllocationName"]
Sector allocation -> ["TR.FundIndustrySectorAllocation", "TR.FundAllocationName"]