UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 589 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"; }>; export type PriceProtectionScope = (typeof PriceProtectionScope)[keyof typeof PriceProtectionScope];