fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 433 B
TypeScript
/**
* Describes the how the price limits are expressed.
* - Tag: 1306
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PriceLimitType: Readonly<{
/** Price (default) */
readonly Price: 0;
/** Ticks */
readonly Ticks: 1;
/** Percentage */
readonly Percentage: 2;
}>;
export type PriceLimitType = (typeof PriceLimitType)[keyof typeof PriceLimitType];