UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 418 B
/** * Operator to perform on the instrument(s) specified * - Tag: 1535 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const InstrumentScopeOperator: Readonly<{ /** Include */ readonly Include: 1; /** Exclude */ readonly Exclude: 2; }>; export type InstrumentScopeOperator = (typeof InstrumentScopeOperator)[keyof typeof InstrumentScopeOperator];