UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 525 B
/** * Specifies whether or not book entries should be aggregated. (Not specified) = broker option * - Tag: 266 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const AggregatedBook: Readonly<{ /** book entries to be aggregated */ readonly BookEntriesToBeAggregated: "Y"; /** book entries should not be aggregated */ readonly BookEntriesShouldNotBeAggregated: "N"; }>; export type AggregatedBook = (typeof AggregatedBook)[keyof typeof AggregatedBook];