fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
30 lines (29 loc) • 932 B
TypeScript
/**
* Type of auction order.
* - Tag: 1803
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AuctionType: Readonly<{
/** None */
readonly None: 0;
/** Block order auction */
readonly BlockOrderAuction: 1;
/** Directed order auction */
readonly DirectedOrderAuction: 2;
/** Exposure order auction */
readonly ExposureOrderAuction: 3;
/** Flash order auction */
readonly FlashOrderAuction: 4;
/** Facilitation order auction */
readonly FacilitationOrderAuction: 5;
/** Solicitation order auction */
readonly SolicitationOrderAuction: 6;
/** Price improvement mechanism (PIM) */
readonly PriceImprovementMechanism: 7;
/** Directed Order price improvement mechanism (PIM) */
readonly DirectedOrderPriceImprovementMechanism: 8;
}>;
export type AuctionType = (typeof AuctionType)[keyof typeof AuctionType];