UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 547 B
/** * Code to identify the type of liquidity indicator. * - Tag: 409 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const LiquidityIndType: Readonly<{ /** 5-day moving average */ readonly FiveDayMovingAverage: 1; /** 20-day moving average */ readonly TwentyDayMovingAverage: 2; /** Normal market size */ readonly NormalMarketSize: 3; /** Other */ readonly Other: 4; }>; export type LiquidityIndType = (typeof LiquidityIndType)[keyof typeof LiquidityIndType];