Hi
I have to get for a list of companies their bond data (seniority, duration, yield)
Following code works, but maybe there is a more efficient way to do it, in one request?
Thanks
ric='AAPL.O'
parameters=['TR.FISeniorityTypeDescription','TR.DurationAnalytics','TR.FiMaturityStandardYield']
df, err = ek.get_data(ric,['TR.BondISIN'])
bonds_list=df['Bond ISIN'].to_list()
df, err = ek.get_data(bonds_list,parameters)
df.dropna(how="any", axis=0, inplace=True)
df