Hi,
I have tried extracting the exchange quotes for a list of countries using the python code below.
It seems like there is some inconsistency within reporting for some quotes of small currency.
i.e JPYEUR=R = 0.6660 and 0.0066 from refinitiv datasource and google respectively.
but are valid when currency rates are not small. i.e USDEUR.
0.94 and 0.94from refinitiv datasource and google respectively
I understand its a convention to normalise fx rate to prevent too many decimal places being reported.
However as I'm trying to calculate the cost of a good. Are there any methods that i could get the actual quote of a currency instead of normalised quote?
Many thanks.
import refinitiv.data as rd
rd.get_history(universe=sublist,fields=['BID'], interval="1D",start=datetime.now() - timedelta(days=365),end=datetime.now())