Hi, is it possible to get historic prices adjusted for corp actions using get_data? I cant get it to work. I am also returning results in USD. Below is code I am using
dfmcap2, err = ek.get_data(['GPOR.L'],['TR.Close'],{'SDate':setdate, 'EDate':sd, 'Curn':'USD'})
Please try TR.CLOSEPRICE with the Adjusted parameter.
dfmcap2, err = ek.get_data(['GPOR.L'],['TR.CLOSEPRICE.date','TR.CLOSEPRICE(Adjusted=1)'],{'SDate':0, 'EDate':-16, 'Curn':'USD'}) dfmcap2, err = ek.get_data(['GPOR.L'],['TR.CLOSEPRICE.date','TR.CLOSEPRICE(Adjusted=0)'],{'SDate':0, 'EDate':-16, 'Curn':'USD'})