UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

25 lines (24 loc) 867 B
/** * The type of instrument relationship * - Tag: 1648 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const RelatedInstrumentType: Readonly<{ /** "hedges for" instrument */ readonly HedgesForInstrument: 1; /** Underlier */ readonly Underlier: 2; /** Equity equivalent */ readonly EquityEquivalent: 3; /** Nearest exchange traded contract */ readonly NearestExchangeTradedContract: 4; /** Retail equivalent of wholesale instrument */ readonly RetailEquivalent: 5; /** Leg Used to associate or link InstrumentLeg to Instrument in messages where there can be multiple instruments, such as in Email(35=C) and News(35=B) messages. */ readonly Leg: 6; }>; export type RelatedInstrumentType = (typeof RelatedInstrumentType)[keyof typeof RelatedInstrumentType];