fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 1.12 kB
TypeScript
/**
* The level of response requested from receiver of mass order messages. A default value should be bilaterally agreed.
* - Tag: 2427
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrderResponseLevel: Readonly<{
/** No acknowledgement
Responses are provided through one or more ExecutionReport(35=8) messages. */
readonly NoAck: 0;
/** Minimum acknowledgement
The minimum is any information to explain why the requested transaction was refused or led to additional events, e.g. immediate execution of an order that was entered or modified. */
readonly MinimumAck: 1;
/** Acknowledge each order
The number of entries in the response is identical to the number of entries in the request. */
readonly AckEach: 2;
/** Summary acknowledgement
Responses are provided through a single MassOrderAck(35=DK) without entries and one or more ExecutionReport(35=8) messages. */
readonly SummaryAck: 3;
}>;
export type OrderResponseLevel = (typeof OrderResponseLevel)[keyof typeof OrderResponseLevel];