I would like to download all analyst recommendations released between 2000 and 2024 (not just the latest, but the full historical data).
Specifically, I want to retrieve the following information:
- The date the recommendation was announced
- The date it was activated in Refinitiv (i.e., when it became available in the system)
- The date it was confirmed
- The broker name
- The analyst name
- The recommendation value
I am currently attempting the following code, but I'm not sure which fields and parameters I need to include to get the data correctly.
import refinitiv.data as rd
rd.open_session(app_key=APP_KEY)
df = rd.get_data(
universe = ['037833100'],
fields = [], parameters={}
)
Could you please advise which fields correspond to the information above and how to structure the query to get historical recommendations, not just the latest?