fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 718 B
TypeScript
/**
* If the calculated discretionary price is not a valid tick price, specifies whether to round the price to be more or less aggressive
* - Tag: 844
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DiscretionRoundDirection: Readonly<{
/** More aggressive - on a buy order round the price up to the nearest tick; on a sell round down to the nearest tick */
readonly MoreAggressive: 1;
/** More passive - on a buy order round down to the nearest tick; on a sell order round up to the nearest tick */
readonly MorePassive: 2;
}>;
export type DiscretionRoundDirection = (typeof DiscretionRoundDirection)[keyof typeof DiscretionRoundDirection];