fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 441 B
TypeScript
/**
* 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';
}>;