fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 350 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;
}>;