fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
15 lines (14 loc) • 585 B
TypeScript
/**
* Used to further categorize market segments within a MarketSegmentType(2543).
* - Tag: 2544
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MarketSegmentSubType: Readonly<{
/** Inter-product spread
Complex instruments which consist of leg instruments from different products, e.g. a location spread which include country-specific products in each leg instrument. */
readonly InterProductSpread: 1;
}>;
export type MarketSegmentSubType = (typeof MarketSegmentSubType)[keyof typeof MarketSegmentSubType];