@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
21 lines (20 loc) • 423 B
TypeScript
/**
* Specifies the type of trade strategy.
* tag: 2141
* @readonly
* @enum {string} (String)
*/
export declare enum StrategyType {
/** Straddle */
Straddle = "STD",
/** Strangle */
Strangle = "STG",
/** Butterfly */
Butterfly = "BF",
/** Condor */
Condor = "CNDR",
/** Callable inversible snowball */
CallableInversibleSnowball = "CISN",
/** Other */
Other = "OTHER"
}