Hi all,
The problem is that when I ran the following codes, I found that the returned value was only the latest market value of the bond, but I expected to get a time series.
Bond_fields = ["TR.ASKPRICE.date",
"TR.ASKPRICE",
"TR.MarketValueAnalytics",
"TR.CleanMarketValueAnalytics"]
Bond_RICs = ["78490FHF9="]
df, err = ek.get_data(Bond_RICs,
Bond_fields,
{'SDate':'2019-01-01','EDate':'2020-12-06', 'Frq': 'D'})
df
The returned result is :
I am looking forward to your response.
Best