@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 443 B
TypeScript
/**
* Type of Discretion Limit
* tag: 843
* @readonly
* @enum {number} (int)
*/
export declare enum DiscretionLimitType {
/** Or better (default) - price improvement allowed */
OrBetter = 0,
/** Strict - limit is a strict limit */
Strict = 1,
/** Or worse - for a buy the discretion price is a minimum and for a sell the discretion price is a maximum (for use for orders which have a price range) */
OrWorse = 2
}