UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

31 lines (30 loc) 934 B
/** * Reason Quote Entry was rejected: * - Tag: 368 * - FIX Specification type: int * - FIX Specification version: FIX42 * - Mapped type: number * @readonly * @public */ export declare const QuoteEntryRejectReason: Readonly<{ /** Unknown symbol (Security) */ readonly UnknownSymbol: 1; /** Exchange (Security) closed */ readonly Exchange: 2; /** Quote exceeds limit */ readonly QuoteExceedsLimit: 3; /** Too late to enter */ readonly TooLateToEnter: 4; /** Unknown Quote */ readonly UnknownQuote: 5; /** Duplicate Quote */ readonly DuplicateQuote: 6; /** Invalid bid/ask spread */ readonly InvalidBidAskSpread: 7; /** Invalid price */ readonly InvalidPrice: 8; /** Not authorized to quote security */ readonly NotAuthorizedToQuoteSecurity: 9; }>; export type QuoteEntryRejectReason = (typeof QuoteEntryRejectReason)[keyof typeof QuoteEntryRejectReason];