fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 435 B
TypeScript
/**
* Specifies the market scope of the market data.
* - Tag: 546
* - FIX Specification type: MultipleCharValue
* - Mapped type: string
* @readonly
* @public
*/
export declare const Scope: Readonly<{
/** Local Market (Exchange, ECN, ATS) */
readonly LocalMarket: "1";
/** National */
readonly National: "2";
/** Global */
readonly Global: "3";
}>;
export type Scope = (typeof Scope)[keyof typeof Scope];