fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 683 B
TypeScript
/**
* Code to identify whether to book out executions on a part-filled GT order on the day of execution or to accumulate.
* - Tag: 427
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const GTBookingInst: Readonly<{
/** Book out all trades on day of execution */
readonly BookOutAllTradesOnDayOfExecution: 0;
/** Accumulate executions until order is filled or expires */
readonly AccumulateUntilFilledOrExpired: 1;
/** Accumulate until verbally notified otherwise */
readonly AccumulateUntilVerballyNotifiedOtherwise: 2;
}>;
export type GTBookingInst = (typeof GTBookingInst)[keyof typeof GTBookingInst];