fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 432 B
TypeScript
/**
* 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';
}>;