UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 781 B
/** * Defines the type of contingency. * - Tag: 1385 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ContingencyType: Readonly<{ /** One Cancels the Other (OCO) */ readonly OneCancelsTheOther: 1; /** One Triggers the Other (OTO) */ readonly OneTriggersTheOther: 2; /** One Updates the Other (OUO) - Absolute Quantity Reduction */ readonly OneUpdatesTheOtherAbsolute: 3; /** One Updates the Other (OUO) - Proportional Quantity Reduction */ readonly OneUpdatesTheOtherProportional: 4; /** Bid and Offer */ readonly BidAndOffer: 5; /** Bid and Offer OCO */ readonly BidAndOfferOCO: 6; }>; export type ContingencyType = (typeof ContingencyType)[keyof typeof ContingencyType];