fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 481 B
TypeScript
/**
* Identifies whether the rate spread is applied to a long or short position.
* - Tag: 40795
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamRateSpreadPositionType: Readonly<{
/** Short */
readonly Short: 0;
/** Long */
readonly Long: 1;
}>;
export type PaymentStreamRateSpreadPositionType = (typeof PaymentStreamRateSpreadPositionType)[keyof typeof PaymentStreamRateSpreadPositionType];