UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 476 B
/** * The side from which the trigger price is reached. * - Tag: 1109 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const TriggerPriceDirection: Readonly<{ /** Trigger if the price of the specified type goes UP to or through the specified Trigger Price. */ readonly Up: 'U'; /** Trigger if the price of the specified type goes DOWN to or through the specified Trigger Price. */ readonly Down: 'D'; }>;