fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 580 B
TypeScript
/**
* 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";
}>;
export type TriggerPriceDirection = (typeof TriggerPriceDirection)[keyof typeof TriggerPriceDirection];