@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 344 B
TypeScript
/**
* Instruction on how to add a trade to an allocation group when it is being given-up.
* tag: 1848
* @readonly
* @enum {number} (int)
*/
export declare enum TradeAllocGroupInstruction {
/** Add to an existing allocation group if one exists. */
Add = 0,
/** Do not add the trade to an allocation group. */
DoNotAdd = 1
}