I am using the following formula to pull historical prices for a large number of ISINs:
df_int, err = ek.get_data(instruments = isins ,fields = ['TR.CLOSEPRICE','TR.CLOSEPRICE.date'],
parameters = {'Frq' : 'D,','SDate': '2012-01-01', 'EDate' : '2023-12-31','CH' : 'Fd','RH' : 'IN'})
This successfully pulls a price each day for most of my ISINs. However, I am unclear about what price this actually is. Is the TR.CLOSEPRICE field the gross price (before fees paid to the fund for positive performance or general fees) or net price (after any fees)?
Thank you,
Anthony