@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 399 B
TypeScript
/**
* The side from which the trigger price is reached.
* tag: 1109
* @readonly
* @enum {string} (char)
*/
export declare enum TriggerPriceDirection {
/** Trigger if the price of the specified type goes UP to or through the specified Trigger Price. */
Up = "U",
/** Trigger if the price of the specified type goes DOWN to or through the specified Trigger Price. */
Down = "D"
}