fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 532 B
TypeScript
/**
* 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;
readonly RetailEquivalent: 5;
readonly Leg: 6;
}>;