fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 543 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: 1047
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const AllocPositionEffect: Readonly<{
/** Open */
readonly Open: 'O';
/** Close */
readonly Close: 'C';
/** Rolled */
readonly Rolled: 'R';
/** FIFO */
readonly FIFO: 'F';
}>;