fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 626 B
TypeScript
/**
* Type of Discretion Limit
* - Tag: 843
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DiscretionLimitType: Readonly<{
/** Or better (default) - price improvement allowed */
readonly OrBetter: 0;
/** Strict - limit is a strict limit */
readonly 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) */
readonly OrWorse: 2;
}>;
export type DiscretionLimitType = (typeof DiscretionLimitType)[keyof typeof DiscretionLimitType];