fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 517 B
TypeScript
/**
* Instruction related to system generated auctions, e.g. flash order auctions.
* - Tag: 1805
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AuctionInstruction: Readonly<{
/** Automatic auction permitted (default) */
readonly AutomatedAuctionPermitted: 0;
/** Automatic auction not permitted */
readonly AutomatedAuctionNotPermitted: 1;
}>;
export type AuctionInstruction = (typeof AuctionInstruction)[keyof typeof AuctionInstruction];