fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
19 lines (18 loc) • 571 B
TypeScript
/**
* Flag that identifies a price.
* - Tag: 286
* - FIX Specification type: char
* - FIX Specification version: FIX42
* - Mapped type: string
* @readonly
* @public
*/
export declare const OpenCloseSettleFlag: Readonly<{
/** Daily Open / Close / Settlement price */
readonly DailyOpen: "0";
/** Session Open / Close / Settlement price */
readonly SessionOpen: "1";
/** Delivery Settlement price */
readonly DeliverySettlementEntry: "2";
}>;
export type OpenCloseSettleFlag = (typeof OpenCloseSettleFlag)[keyof typeof OpenCloseSettleFlag];