df = rdp.get_bond_analytics(
universe = universe,
fields = ["InstrumentCode",
"NotionalCcy",
"PositionInDealCcy",
"InterestPaymentFrequency",
"CashFlowDatesArray",
"CashFlowInterestAmountsInDealCcyArray",
"CashFlowCapitalAmountsInDealCcyArray"
]
)
Above are from sample code of cash flow sample. Just want to download more array related field but don't know how to do so. Any link or code to download all field universe? Many thanks.
See the list of output fields available on Refinitiv Data Platform APIs page on Refinitiv Developer Portal under Documentation - Manuals & Guides - IPA Financial Contracts - Bond Contracts - Output Fields Description.
In terms of code, just drop the fields list e.g.
df = rdp.get_bond_analytics( universe = ['US10YT=RR'] )
The above returns a DF with 287 columns (fields) - Note that many of them are blank - if a particular field is not relevant to the instrument type...