UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 550 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; }>;