fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 379 B
TypeScript
/**
* Relative quality of indication
* - Tag: 25
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const IOIQltyInd: Readonly<{
/** High */
readonly High: "H";
/** Low */
readonly Low: "L";
/** Medium */
readonly Medium: "M";
}>;
export type IOIQltyInd = (typeof IOIQltyInd)[keyof typeof IOIQltyInd];