UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 888 B
/** * Defines the scope of TriggerAction(1101) when it is set to "cancel" (3). * - Tag: 1628 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TriggerScope: Readonly<{ /** This order (default) */ readonly ThisOrder: 0; /** Other order (use RefID) */ readonly OtherOrder: 1; /** All other orders for the given security */ readonly AllOtherOrdersForGivenSecurity: 2; /** All other orders for the given security and price */ readonly AllOtherOrdersForGivenSecurityAndPrice: 3; /** All other orders for the given security and side */ readonly AllOtherOrdersForGivenSecurityAndSide: 4; /** All other orders for the given security, price and side */ readonly AllOtherOrdersForGivenSecurityPriceAndSide: 5; }>; export type TriggerScope = (typeof TriggerScope)[keyof typeof TriggerScope];