fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 483 B
TypeScript
/**
* Specifies the yield calculation treatment for the index.
* - Tag: 40796
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamRateTreatment: Readonly<{
/** Bond equivalent yield */
readonly BondEquivalentYield: 0;
/** Money market yield */
readonly MoneyMarketYield: 1;
}>;
export type PaymentStreamRateTreatment = (typeof PaymentStreamRateTreatment)[keyof typeof PaymentStreamRateTreatment];