What's the variable name for Python data retrival that is equal to X(P)~E? I mean, how do I get th

Whats the variable name for Python data retrival that is equal to X(P)~E?

 I mean, how do I get the same price, taking as a base the Excel file

How can I get all in euro?

final_prices = rd.get_data(
universe = try_codes,
fields = ['TR.OPENPRICE.Date',
'TR.OPENPRICE',
'TR.CLOSEPRICE'],
parameters = {
'SDate': '2025-01-01',
'EDate': '2025-03-14',
'Frq': 'D'})

I use this code in Python

Best Answer

Answers