Hello
Following up on @Student-10 question, I would like to know how to download bond returns ?
There are several variables of interest in the Item Browser (Bond_fields). However, the values only work for the last available date, not the historical ones.
How do we specify ek.get_data() in order to have the historical values?
Bond_fields = ["TR.FiEOMPriceReturn","TR.FiEOMTotalReturn", "TR.FiClosingPrice", "TR.FiPrevPriceReturn", "TR.FiEOMPriceReturn.date"] Bond_RICs = ["CN1920029=","CN1720052=","CN1720012=","CN1920001=", "CN1702002=","CN101751004=","CN101901057="] df, err = ek.get_data(Bond_RICs, Bond_fields,{'SDate':'2015-01-01','EDate':'2020-12-06'}) df
Additionally, calculating the bid/mid/ask prices returns (%change) from previous gives me extremely low results (0.000001). Is there another way to calculate bond returns using closing prices? Maybe I am just missing something.