@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 492 B
TypeScript
/**
* Indicates what constitutes a bookable unit.
* tag: 590
* @readonly
* @enum {string} (char)
*/
export declare enum BookingUnit {
/** Each partial execution is a bookable unit */
EachPartialExecutionIsABookableUnit = "0",
/** Aggregate partial executions on this order, and book one trade per order */
AggregatePartialExecutionsOnThisOrder = "1",
/** Aggregate executions for this symbol, side, and settlement date */
AggregateExecutionsForThisSymbol = "2"
}