UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

30 lines (29 loc) 1.12 kB
/** * Identifies the type of quote cancel. * - Tag: 298 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const QuoteCancelType: Readonly<{ /** Cancel quotes for one or more securities */ readonly CancelForOneOrMoreSecurities: 1; /** Cancel quotes for security type(s) */ readonly CancelForSecurityType: 2; /** Cancel quotes for underlying security */ readonly CancelForUnderlyingSecurity: 3; /** Cancel all quotes */ readonly CancelAllQuotes: 4; /** Cancel specified single quote Cancel single quote specified in QuoteID(117) or SecondaryQuoteID(1751) */ readonly CancelSpecifiedSingleQuote: 5; /** Cancel by type of quote Cancel quotes by type of quote specified in QuoteType(537) */ readonly CancelByTypeOfQuote: 6; /** Cancel quotes for an issuer */ readonly CancelForSecurityIssuer: 7; /** Cancel quotes for an issuer of underlying security */ readonly CancelForIssuerOfUnderlyingSecurity: 8; }>; export type QuoteCancelType = (typeof QuoteCancelType)[keyof typeof QuoteCancelType];