UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 789 B
/** * Describes the type of relationship between the order identified by RelatedOrderID(2887) and the order outside of the RelatedOrderGrp component. * - Tag: 2890 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const OrderRelationship: Readonly<{ /** Not specified */ readonly NotSpecified: 0; /** Order aggregation Order has been subject to a bundling of multiple orders to a single new order identified outside of the component. */ readonly OrderAggregation: 1; /** Order split Order has been created as a child order of the order identified outside of the component. */ readonly OrderSplit: 2; }>; export type OrderRelationship = (typeof OrderRelationship)[keyof typeof OrderRelationship];