UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

36 lines (35 loc) 1.03 kB
/** * Identifies the type of position transaction. * - Tag: 709 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PosTransType: Readonly<{ /** Exercise */ readonly Exercise: 1; /** Do not exercise */ readonly DoNotExercise: 2; /** Position adjustment */ readonly PositionAdjustment: 3; /** Position change submission / margin disposition */ readonly PositionChangeSubmission: 4; /** Pledge */ readonly Pledge: 5; /** Large trader submission */ readonly LargeTraderSubmission: 6; /** Large positions reporting submission */ readonly LargePositionsReportingSubmission: 7; /** Long holdings */ readonly LongHoldings: 8; readonly InternalTransfer: 9; readonly TransferOfFirm: 10; readonly ExternalTransfer: 11; /** Corporate action */ readonly CorporateAction: 12; readonly Notification: 13; readonly PositionCreation: 14; readonly Closeout: 15; readonly Reopen: 16; }>;