Hi, I'm using Eikon to pull data into Python. This is the line I use to pull data:
ek.get_timeseries(sym,start_date='2016-03-03',end_date= sheet['B4'].value, interval = 'daily')['CLOSE']
where 'sym' is a variable for RIC that keeps changing. The RICs I'm using all have different currencies. I was wondering if there was a way to define the currency in which I want the data to be pulled within the timeseries function or if there was any other way to do this. Thanks!