fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 480 B
TypeScript
/**
* 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;
}>;
export type StatsType = (typeof StatsType)[keyof typeof StatsType];