fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 629 B
TypeScript
/**
* Defines when the trigger will hit, i.e. the action specified by the trigger instructions will come into effect.
* - Tag: 1100
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TriggerType: Readonly<{
/** Partial Execution */
readonly PartialExecution: '1';
/** Specified Trading Session */
readonly SpecifiedTradingSession: '2';
/** Next Auction */
readonly NextAuction: '3';
/** Price Movement */
readonly PriceMovement: '4';
/** On Order Entry or order modification entry */
readonly OnOrderEntryOrModification: '5';
}>;