Hi,
I would like to get a historical timeseries of EUROPE SOVEREIGN BBB RATING CREDIT CURVE (for all tenor points). Can you please help what is the right code? Currently I'm trying this but not working:
import refinitiv.data as rd
rd.open_session()
df = rd.get_history(
universe=['0#EUSOVBBBEURBMK='],
fields= ['TR.BENCHMARKBONDYIELD'],
parameters = {
'SDate':'2024-01-01',
'EDate':'-1D',
'frq':'M'
}
)
display(df)
Thank you for the help
Judit