UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 675 B
/** * Additional information related to the pricing of a commodity swaps position, specifically an indicator referring to the position type. * - Tag: 1833 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ContractRefPosType: Readonly<{ /** Two component intercommodity spread */ readonly TwoComponentIntercommoditySpread: 0; /** Index or basket */ readonly IndexOrBasket: 1; /** Two component locational basis */ readonly TwoComponentLocationBasis: 2; /** Other */ readonly Other: 99; }>; export type ContractRefPosType = (typeof ContractRefPosType)[keyof typeof ContractRefPosType];