fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 499 B
TypeScript
/**
* The scope of the discretion
* - Tag: 846
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DiscretionScope: Readonly<{
/** Local (Exchange, ECN, ATS) */
readonly Local: 1;
/** National */
readonly National: 2;
/** Global */
readonly Global: 3;
/** National excluding local */
readonly NationalExcludingLocal: 4;
}>;
export type DiscretionScope = (typeof DiscretionScope)[keyof typeof DiscretionScope];