fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 599 B
TypeScript
/**
* Defines what value to use in DisplayQty (1138). If not specified the default DisplayMethod is "1"
* - Tag: 1084
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const DisplayMethod: Readonly<{
/** Initial (use original DisplayQty) */
readonly Initial: "1";
/** New (use RefreshQty) */
readonly New: "2";
/** Random (randomize value) */
readonly Random: "3";
/** Undisclosed (invisible order) */
readonly Undisclosed: "4";
}>;
export type DisplayMethod = (typeof DisplayMethod)[keyof typeof DisplayMethod];