UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

52 lines (51 loc) 2.04 kB
/** * Result returned in response to MarketDataStatisticsRequest (35=DO). * - Tag: 2473 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDStatisticRequestResult: Readonly<{ /** Successful (default) */ readonly Successful: 0; /** Invalid or unknown market */ readonly InvalidOrUnknownMarket: 1; /** Invalid or unknown market segment */ readonly InvalidOrUnknownMarketSegment: 2; /** Invalid or unknown security list */ readonly InvalidOrUnknownSecurityList: 3; /** Invalid or unknown instrument(s) */ readonly InvalidOrUnknownInstruments: 4; /** Invalid parties */ readonly InvalidParties: 5; /** Trade date out of supported range */ readonly TradeDateOutOfSupportedRange: 6; /** Statistic type not supported */ readonly UnsupportedStatisticType: 7; /** Scope or sub-scope not supported */ readonly UnsupportedScopeOrSubScope: 8; /** Scope type not supported */ readonly UnsupportedScopeType: 9; /** Market depth not supported */ readonly MarketDepthNotSupported: 10; /** Frequency not supported */ readonly FrequencyNotSupported: 11; /** Statistic interval not supported */ readonly UnsupportedStatisticInterval: 12; /** Statistic date range not supported */ readonly UnsupportedStatisticDateRange: 13; /** Statistic time range not supported */ readonly UnsupportedStatisticTimeRange: 14; /** Ratio type not supported */ readonly UnsupportedRatioType: 15; /** Invalid or unknown trade input source */ readonly InvalidOrUnknownTradeInputSource: 16; /** Invalid or unknown trading session */ readonly InvalidOrUnknownTradingSession: 17; /** Unauthorized for statistic request */ readonly UnauthorizedForStatisticRequest: 18; /** Other (further information in Text (58) field) */ readonly Other: 99; }>; export type MDStatisticRequestResult = (typeof MDStatisticRequestResult)[keyof typeof MDStatisticRequestResult];