Hi,
I am trying to retrieve data from Eikon using Python api
my code is :
data, error=ek.get_data(x, ['TR.PriceClose.Date', 'TR.PriceClose'], parameters={"Adjusted":"1",'SDate':sDate, 'EDate':eDate,"Frq":"D", "curn":"USD"})
table = pd.pivot_table(data, index='Date', columns='Instrument',values='Price Close')
/
After this, I got the full history prices of different stocks. But I compared this table to Yahoo finance 's adjusted price and it seems like Eikon is giving me 'unadjusted price' only.
Could you help me with this? I don't know what have gone wrong