fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 592 B
TypeScript
/**
* Instructions for order handling on Broker trading floor
* - Tag: 21
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const HandlInst: Readonly<{
/** Automated execution order, private, no Broker intervention */
readonly AutomatedExecutionNoIntervention: "1";
/** Automated execution order, public, Broker intervention OK */
readonly AutomatedExecutionInterventionOK: "2";
/** Manual order, best execution */
readonly ManualOrder: "3";
}>;
export type HandlInst = (typeof HandlInst)[keyof typeof HandlInst];