fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 593 B
TypeScript
/**
* Defines the type of price protection the customer requires on their order.
* - Tag: 1108
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TriggerPriceTypeScope: 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 TriggerPriceTypeScope = (typeof TriggerPriceTypeScope)[keyof typeof TriggerPriceTypeScope];