fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 379 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';
}>;