UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

26 lines (25 loc) 887 B
/** * Identifies the reason for rejection of a New Order List message. Note that OrdRejReason(103) is used if the rejection is based on properties of an individual order part of the List. * - Tag: 1386 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ListRejectReason: Readonly<{ /** Broker / Exchange option */ readonly BrokerCredit: 0; /** Exchange closed */ readonly ExchangeClosed: 2; /** Too late to enter */ readonly TooLateToEnter: 4; /** Unknown order */ readonly UnknownOrder: 5; /** Duplicate Order (e.g. dupe ClOrdID) */ readonly DuplicateOrder: 6; /** Unsupported order characteristic */ readonly UnsupportedOrderCharacteristic: 11; /** Other */ readonly Other: 99; }>; export type ListRejectReason = (typeof ListRejectReason)[keyof typeof ListRejectReason];