I would like to read out the currency for an instrument.
For this I use the following code:
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['NESN.S'],
fields = ['CF_CURR']
)
display(df)
The result is not the currency but a number (for NESN.S -> 756). How do I get the currency 'CHF'?
Is there another dictionary where I can change the number into a currency.