@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
21 lines (20 loc) • 549 B
TypeScript
/**
* Indicates whether the resulting position after a trade should be an opening position or closing position. Used for omnibus accounting - where accounts are held on a gross basis instead of being netted together.
* tag: 77
* @readonly
* @enum {string} (char)
*/
export declare enum PositionEffect {
/** Close */
Close = "C",
/** FIFO */
FIFO = "F",
/** Open */
Open = "O",
/** Rolled */
Rolled = "R",
/** Close but notify on open */
CloseButNotifyOnOpen = "N",
/** Default */
Default = "D"
}