UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 524 B
/** * Indicates that IOI is the result of an existing agency order or a facilitation position resulting from an agency order, not from principal trading or order solicitation activity. * - Tag: 130 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const IOINaturalFlag: Readonly<{ /** Not Natural */ readonly NotNatural: "N"; /** Natural */ readonly Natural: "Y"; }>; export type IOINaturalFlag = (typeof IOINaturalFlag)[keyof typeof IOINaturalFlag];