UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 412 B
/** * Type of statistics * - Tag: 1176 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const StatsType: Readonly<{ /** Exchange Last */ readonly ExchangeLast: 1; /** High / Low Price */ readonly High: 2; /** Average Price (VWAP, TWAP ... ) */ readonly AveragePrice: 3; /** Turnover (Price * Qty) */ readonly Turnover: 4; }>;