fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
14 lines (13 loc) • 475 B
TypeScript
/**
* Market condition. In the context of ESMA RTS 8 it is important that trading venues communicate the condition of the market, particularly "stressed" and "exceptional", in order to provide incentives for firms contributing to liquidity.
* - Tag: 2705
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MarketCondition: Readonly<{
readonly Normal: 0;
readonly Stressed: 1;
readonly Exceptional: 2;
}>;