UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 521 B
/** * Driver and part of trade in the event that the Security Master file was wrong at the point of entry(Note tag # was reserved in FIX 4.1, added in FIX 4.3) * - Tag: 258 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const TradedFlatSwitch: Readonly<{ /** Not Traded Flat */ readonly NotTradedFlat: "N"; /** Traded Flat */ readonly TradedFlat: "Y"; }>; export type TradedFlatSwitch = (typeof TradedFlatSwitch)[keyof typeof TradedFlatSwitch];