UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

23 lines (22 loc) 532 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'; }>;