fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 446 B
TypeScript
/**
* 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';
}>;