fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 634 B
TypeScript
/**
* Status of market segment.
* - Tag: 2542
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MarketSegmentStatus: Readonly<{
/** Active
Market segment is active, i.e. trading is possible. */
readonly Active: 1;
/** Inactive
Market segment has previously been active and is now inactive. */
readonly Inactive: 2;
/** Published
Market segment information is provided prior to its first activation. */
readonly Published: 3;
}>;
export type MarketSegmentStatus = (typeof MarketSegmentStatus)[keyof typeof MarketSegmentStatus];