UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

26 lines (25 loc) 770 B
/** * Processing code for sub-account. Absence of this field in AllocAccount (79) / AllocPrice (366) /AllocQty (80) / ProcessCode instance indicates regular trade. * - Tag: 81 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const ProcessCode: Readonly<{ /** Regular */ readonly Regular: "0"; /** Soft Dollar */ readonly SoftDollar: "1"; /** Step-In */ readonly StepIn: "2"; /** Step-Out */ readonly StepOut: "3"; /** Soft-dollar Step-In */ readonly SoftDollarStepIn: "4"; /** Soft-dollar Step-Out */ readonly SoftDollarStepOut: "5"; /** Plan Sponsor */ readonly PlanSponsor: "6"; }>; export type ProcessCode = (typeof ProcessCode)[keyof typeof ProcessCode];