UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 553 B
/** * 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"; }>; export type OpenClose = (typeof OpenClose)[keyof typeof OpenClose];