fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 555 B
TypeScript
/**
* Indicates whether or not the halt was due to Common Stock trading being halted.
* - Tag: 328
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const InViewOfCommon: Readonly<{
/** Halt was not related to a halt of the common stock */
readonly HaltWasNotRelatedToAHaltOfTheCommonStock: "N";
/** Halt was due to common stock being halted */
readonly HaltWasDueToCommonStockBeingHalted: "Y";
}>;
export type InViewOfCommon = (typeof InViewOfCommon)[keyof typeof InViewOfCommon];