Hi everyone, I'm kinda new in refinitiv and I wanted to get the historical ownership over time of some companies for a 20 year span.
I have found that data is available in workspace but I was wondering how could I get it through the api to directly export it into a .CSV file
df = ek.get_data('EQNR.OL', ['TR.PctOfSharesOutHeld', 'TR.InvestorFullName'],
{'SDate': '-20', 'EDate': '0', 'Frq': 'Y'})
#How can I make it so it extracts data from 1-1-2000 to 1-1-2024?
# Extract the DataFrame from the returned tuple
actual_df = df[0]
filtered_df = actual_df[actual_df['Investor Full Name'].str.contains(
"Vanguard|BlackRock|StateStreet", case=False, na=False)]
I want it to contain the information of these three investors in their multiple countries, so just rows that contain either of those three names.
My programming skills are no good, anyone can help me out please?
Also, is there any way to scalate it so I can get data for multiple companies in just one .csv?
Thanks so much in advance!