Hi,
I just want to verify the criteria for the construction of the variable: TR.FiIsStraight, before using it as a filter.
According to the definition:
"Y/N flag indicating whether the bond qualified as "straight", meaning the bond is not callable, putable, convertible, or issued in more than one currency."
However, when looking at bond XS0161488498, it don't see why it is flagged as non straight. Maybe I am missing an additional criteria.
df, err = ek.get_data(
instruments = ['XS0161488498'],
fields = [
'TR.FiIsPutable',
'TR.FiIsCallable',
'TR.FiIsConvertible',
'TR.WarrantIssuePriceCurrency',
'TR.FiCurrency',
'TR.FiIsDualCurrency',
'TR.FiIsStraight',
'TR.FiCouponTypeDescription',
'TR.FiIsSinkable'
]
)