fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 828 B
TypeScript
/**
* Flag that identifies a market data entry. (Prior to FIX 4.3 this field was of type char)
* - Tag: 286
* - FIX Specification type: MultipleCharValue
* - Mapped type: string
* @readonly
* @public
*/
export declare const OpenCloseSettlFlag: Readonly<{
/** Daily Open / Close / Settlement entry */
readonly DailyOpen: "0";
/** Session Open / Close / Settlement entry */
readonly SessionOpen: "1";
/** Delivery Settlement entry */
readonly DeliverySettlementEntry: "2";
/** Expected entry */
readonly ExpectedEntry: "3";
/** Entry from previous business day */
readonly EntryFromPreviousBusinessDay: "4";
/** Theoretical Price value */
readonly TheoreticalPriceValue: "5";
}>;
export type OpenCloseSettlFlag = (typeof OpenCloseSettlFlag)[keyof typeof OpenCloseSettlFlag];