fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 409 B
TypeScript
/**
* Specifies the side of the relative value.
* - Tag: 2532
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RelativeValueSide: Readonly<{
/** Bid */
readonly Bid: 1;
/** Mid */
readonly Mid: 2;
/** Offer */
readonly Offer: 3;
}>;
export type RelativeValueSide = (typeof RelativeValueSide)[keyof typeof RelativeValueSide];