UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 488 B
/** * Defines the type of price protection the customer requires on their order. * - Tag: 1092 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const PriceProtectionScope: Readonly<{ /** None */ readonly None: '0'; /** Local (Exchange, ECN, ATS) */ readonly Local: '1'; /** National (Across all national markets) */ readonly National: '2'; /** Global (Across all markets) */ readonly Global: '3'; }>;