fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 658 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
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const PositionEffect: Readonly<{
/** Close */
readonly Close: 'C';
/** FIFO */
readonly FIFO: 'F';
/** Open */
readonly Open: 'O';
/** Rolled */
readonly Rolled: 'R';
/** Close but notify on open */
readonly CloseButNotifyOnOpen: 'N';
/** Default */
readonly Default: 'D';
}>;