fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 397 B
TypeScript
/**
* Type of Discretion Offset value
* - Tag: 842
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DiscretionOffsetType: Readonly<{
/** Price (default) */
readonly Price: 0;
/** Basis Points */
readonly BasisPoints: 1;
/** Ticks */
readonly Ticks: 2;
/** Price Tier / Level */
readonly PriceTier: 3;
}>;