hello, are you aware of list of possible values for this field - 'select'?
search.Definition object
response = search.Definition(
view=search.Views.FIXED_INCOME_INSTRUMENTS,
select="ISIN,RIC,IssueDate,Currency,FaceIssuedTotal,CouponRate,CouponType,MaturityDate",
filter=filter_str,
top=10000,
).get_data()
I am looking for underlying index of bonds like coupon sometimes LIBOR + 1%, or Inflation linked bonds inflation + 1%, I need to distinguish somehow these bonds via index, how to select an index?
Thanks