UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 609 B
/** * Specifies the type of trade strategy. * - Tag: 2141 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const StrategyType: Readonly<{ /** Straddle */ readonly Straddle: "STD"; /** Strangle */ readonly Strangle: "STG"; /** Butterfly */ readonly Butterfly: "BF"; /** Condor */ readonly Condor: "CNDR"; /** Callable inversible snowball */ readonly CallableInversibleSnowball: "CISN"; /** Other */ readonly Other: "OTHER"; }>; export type StrategyType = (typeof StrategyType)[keyof typeof StrategyType];