UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 547 B
/** * Used to indicate whether the quoting system allows only one quote to be active at a time for the quote issuer or market maker. * - Tag: 2837 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const SingleQuoteIndicator: Readonly<{ /** Multiple quotes allowed */ readonly MultipleQuotesAllowed: "N"; /** Only one quote allowed */ readonly OnlyOneQuoteAllowed: "Y"; }>; export type SingleQuoteIndicator = (typeof SingleQuoteIndicator)[keyof typeof SingleQuoteIndicator];