fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 368 B
TypeScript
/**
* Describes whether peg is static or floats
* - Tag: 835
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PegMoveType: Readonly<{
/** Floating (default) */
readonly Floating: 0;
/** Fixed */
readonly Fixed: 1;
}>;
export type PegMoveType = (typeof PegMoveType)[keyof typeof PegMoveType];