UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

34 lines (33 loc) 990 B
/** * Used to specify the type of position request being made. * - Tag: 724 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PosReqType: Readonly<{ /** Positions */ readonly Positions: 0; /** Trades */ readonly Trades: 1; /** Exercises */ readonly Exercises: 2; /** Assignments */ readonly Assignments: 3; /** Settlement Activity */ readonly SettlementActivity: 4; /** Backout Message */ readonly BackoutMessage: 5; /** Delta Positions */ readonly DeltaPositions: 6; /** Net Position */ readonly NetPosition: 7; /** Large Positions Reporting */ readonly LargePositionsReporting: 8; /** Exercise Position Reporting Submission */ readonly ExercisePositionReportingSubmission: 9; /** Position Limit Reporting Submission */ readonly PositionLimitReportingSubmissing: 10; }>; export type PosReqType = (typeof PosReqType)[keyof typeof PosReqType];