Further working on the query please find the below python script to get the data.
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['EUR='],
fields = ['TR.BidPrice'],
parameters = {
'SDate': '2024-01-03',
'EDate': '2025-09-15',
'Frq': 'D'
}
)
display(df)
Client has got the below error. Can you please advise.