UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

21 lines (20 loc) 687 B
/** * Indicates how the receiver (i.e. third party) of allocation information should handle/process the account details. * - Tag: 209 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocHandlInst: Readonly<{ /** Match */ readonly Match: 1; /** Forward */ readonly Forward: 2; /** Forward and Match */ readonly ForwardAndMatch: 3; /** Auto claim give-up Indicates that the give-up and take-up party are the same and that trade give-up is to be claimed automatically. */ readonly AutoClaimGiveUp: 4; }>; export type AllocHandlInst = (typeof AllocHandlInst)[keyof typeof AllocHandlInst];