fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 584 B
TypeScript
/**
* Method for booking out this order. Used when notifying a broker that an order to be settled by that broker is to be booked out as an OTC derivative (e.g. CFD or similar).
* - Tag: 775
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const BookingType: Readonly<{
/** Regular booking */
readonly RegularBooking: 0;
/** CFD (Contract for difference) */
readonly CFD: 1;
/** Total Return Swap */
readonly TotalReturnSwap: 2;
}>;
export type BookingType = (typeof BookingType)[keyof typeof BookingType];