Hi - I have established the connection to Eikon from Python, and I know how to pull historical data by using ek.get_data, but how would I pull a list of RIC within a specific 13F period by PermID?
The ek.get_data(PermID, 'TR.RIC') won't work because the PermID are private funds. So I need to pull a complete list of their holdings (RIC) based on private fund's 13F by using their PermID. Thank you.
Below is what I'm looking for in an example:
Assuming I have a PermID 5055409279, and this fund is filing 13F every quarter. If I go under "filings", I would see the most recent 13F filing is Nov 14 for Q3:
The PDF filing has a detailed list of all positions held by the fund, below is a snapshot of a part of the filing:
So I need Python to have both the PermID and the 13F period as input variables, to return to me a list of all RIC on that 13F filing. Please advise. Thank you.