UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 433 B
/** * Type of Peg Offset value * - Tag: 836 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PegOffsetType: Readonly<{ /** Price (default) */ readonly Price: 0; /** Basis Points */ readonly BasisPoints: 1; /** Ticks */ readonly Ticks: 2; /** Price Tier / Level */ readonly PriceTier: 3; /** Percentage */ readonly Percentage: 4; }>;