fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 485 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
* - FIX Specification version: FIX42
* - Mapped type: string
* @readonly
* @public
*/
export declare const OpenClose: Readonly<{
/** Close */
readonly Close: 'C';
/** Open */
readonly Open: 'O';
}>;