fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 449 B
TypeScript
/**
* Indicates whether single sided quotes are allowed.
* - Tag: 2559
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const QuoteSideIndicator: Readonly<{
/** Single sided quotes are not allowed */
readonly No: "N";
/** Single sided quotes are allowed */
readonly Yes: "Y";
}>;
export type QuoteSideIndicator = (typeof QuoteSideIndicator)[keyof typeof QuoteSideIndicator];