Hello everyone
I am trying to get the daily total return for a stock. The code I am using is:
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['NESN.S'],
fields = ['TR.DAILYTOTALRETURN'],
parameters = {
'SDate': '2023-12-31',
'EDate': '-1D',
'Frq': 'D',
'Curn': 'CHF'
}
)
display(df)
This should be correct in my opinion, but I don't get any data.
Outpout:
What am I doing wrong.
Thank you very much