fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 633 B
TypeScript
/**
* Used to indicate how the multi-legged security (e.g. option strategies, spreads, etc.) is being reported.
* - Tag: 442
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const MultiLegReportingType: Readonly<{
/** Single security (default if not specified) */
readonly SingleSecurity: "1";
/** Individual leg of a multi-leg security */
readonly IndividualLegOfAMultiLegSecurity: "2";
/** Multi-leg security */
readonly MultiLegSecurity: "3";
}>;
export type MultiLegReportingType = (typeof MultiLegReportingType)[keyof typeof MultiLegReportingType];