Hi Team, Good day.
Query: The client is currently using the code below. However, their universe contains approximately 1,000 to 1,500 RICs, and adding each RIC manually into the universe list is time‑consuming. Is there a way where an Excel file is uploaded in code book and the RICs are automatically ingested into the code to return the results? If not please advice an work around for this it would be much appreciated.
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['AKSA.IS'],
fields = ['TR.TRESGScore','TR.TRESGScore.date'],
parameters = {
'SDate': '2022-02-01',
'EDate': '2026-01-01',
'Frq': 'Y'
}
)
display(df)