UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 515 B
/** * Code to identify which "SideValue" the value refers to. SideValue1 and SideValue2 are used as opposed to Buy or Sell so that the basket can be quoted either way as Buy or Sell. * - Tag: 401 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SideValueInd: Readonly<{ /** Side Value 1 */ readonly SideValue1: 1; /** Side Value 2 */ readonly SideValue2: 2; }>; export type SideValueInd = (typeof SideValueInd)[keyof typeof SideValueInd];