Hi,
is it possible to download indices in percentage change as can be seen on all the servers (investing.com and others), even in eikon on list called INOV (INFOV for futures)?
If not, then i understand basic operations, for example for dax this works well
ric_dax='.GDAXI'
dax=ek.get_timeseries(ric_dax,start_date='2019-09-03T07:00:00',interval="daily")
dax_diff=dax['CLOSE'].pct_change()*100
But it doesnt work for longer traded futures. for example for nikkei futures this code
ric_nikkei_futures='JNIc1 '
nikkei_futures=ek.get_timeseries(ric_nikkei_futures,start_date='2020-09-03T07:00:00',interval="daily")
nikkei_futures_diff=nikkei_futures['CLOSE'].pct_change()*100
gives different values than on the eikon window called INFOV. does someone know how to solve it? I am from GMT +1, i think it has something to do with a time zone
Even the us indices futures (nasdaq, sp500) does not give the same results as on INFOV page with the code above
Thanks