fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 579 B
TypeScript
/**
* Indicates whether or not automatic booking can occur.
* - Tag: 589
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const DayBookingInst: Readonly<{
/** Can trigger booking without reference to the order initiator ("auto") */
readonly Auto: "0";
/** Speak with order initiator before booking ("speak first") */
readonly SpeakWithOrderInitiatorBeforeBooking: "1";
/** Accumulate */
readonly Accumulate: "2";
}>;
export type DayBookingInst = (typeof DayBookingInst)[keyof typeof DayBookingInst];