@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 425 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
* @readonly
* @enum {number} (int)
*/
export declare enum BookingType {
/** Regular booking */
RegularBooking = 0,
/** CFD (Contract for difference) */
CFD = 1,
/** Total Return Swap */
TotalReturnSwap = 2
}