UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 616 B
/** * Type of adjustment to be applied. Used for Position Change Submission (PCS), Position Adjustment (PAJ), and Customer Gross Margin (CGM). * - Tag: 718 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AdjustmentType: Readonly<{ /** Process request as margin disposition */ readonly ProcessRequestAsMarginDisposition: 0; /** Delta plus */ readonly DeltaPlus: 1; /** Delta minus */ readonly DeltaMinus: 2; /** Final */ readonly Final: 3; /** Customer specific position */ readonly CustomerSpecificPosition: 4; }>;