fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 547 B
TypeScript
/**
* The OrdType the order should have after the trigger has hit. Required to express orders that change from Limit to Market. Other values from OrdType (40) may be used if appropriate and bilaterally agreed upon.
* - Tag: 1111
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TriggerOrderType: Readonly<{
/** Market */
readonly Market: "1";
/** Limit */
readonly Limit: "2";
}>;
export type TriggerOrderType = (typeof TriggerOrderType)[keyof typeof TriggerOrderType];