UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 666 B
/** * Used to indicate if the side being reported on Trade Capture Report represents a leg of a multileg instrument or a single security. * - Tag: 752 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SideMultiLegReportingType: Readonly<{ /** Single Security (default if not specified) */ readonly SingleSecurity: 1; /** Individual leg of a multileg security */ readonly IndividualLegOfAMultilegSecurity: 2; /** Multileg Security */ readonly MultilegSecurity: 3; }>; export type SideMultiLegReportingType = (typeof SideMultiLegReportingType)[keyof typeof SideMultiLegReportingType];