UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

132 lines (131 loc) 3.77 kB
/** * Space-delimited list of conditions describing a quote. * - Tag: 276 * - FIX Specification type: MultipleStringValue * - Mapped type: string * @readonly * @public */ export declare const QuoteCondition: Readonly<{ /** Open/Active */ readonly Open: "A"; /** Closed/Inactive */ readonly Closed: "B"; /** Exchange Best */ readonly ExchangeBest: "C"; /** Consolidated Best */ readonly ConsolidatedBest: "D"; /** Locked */ readonly Locked: "E"; /** Crossed */ readonly Crossed: "F"; /** Depth */ readonly Depth: "G"; /** Fast Trading */ readonly FastTrading: "H"; /** Non-Firm */ readonly NonFirm: "I"; /** Manual/Slow Quote */ readonly Manual: "L"; /** Outright Price */ readonly OutrightPrice: "J"; /** Implied Price */ readonly ImpliedPrice: "K"; /** Depth on Offer */ readonly DepthOnOffer: "M"; /** Depth on Bid */ readonly DepthOnBid: "N"; /** Closing */ readonly Closing: "O"; /** News Dissemination */ readonly NewsDissemination: "P"; /** Trading Range */ readonly TradingRange: "Q"; /** Order Influx */ readonly OrderInflux: "R"; /** Due to Related */ readonly DueToRelated: "S"; /** News Pending */ readonly NewsPending: "T"; /** Additional Info */ readonly AdditionalInfo: "U"; /** Additional Info due to related */ readonly AdditionalInfoDueToRelated: "V"; /** Resume */ readonly Resume: "W"; /** View of Common */ readonly ViewOfCommon: "X"; /** Volume Alert */ readonly VolumeAlert: "Y"; /** Order Imbalance */ readonly OrderImbalance: "Z"; /** Equipment Changeover */ readonly EquipmentChangeover: "a"; /** No Open / No Resume */ readonly NoOpen: "b"; /** Regular ETH */ readonly RegularETH: "c"; /** Automatic Execution */ readonly AutomaticExecution: "d"; /** Automatic Execution ETH */ readonly AutomaticExecutionETH: "e"; /** Fast Market ETH */ readonly FastMarketETH: "f"; /** Inactive ETH */ readonly InactiveETH: "g"; /** Rotation */ readonly Rotation: "h"; /** Rotation ETH */ readonly RotationETH: "i"; /** Halt */ readonly Halt: "j"; /** Halt ETH */ readonly HaltETH: "k"; /** Due to News Dissemination */ readonly DueToNewsDissemination: "l"; /** Due to News Pending */ readonly DueToNewsPending: "m"; /** Trading Resume */ readonly TradingResume: "n"; /** Out of Sequence */ readonly OutOfSequence: "o"; /** Bid Specialist */ readonly BidSpecialist: "p"; /** Offer Specialist */ readonly OfferSpecialist: "q"; /** Bid Offer Specialist */ readonly BidOfferSpecialist: "r"; /** End of Day SAM */ readonly EndOfDaySAM: "s"; /** Forbidden SAM */ readonly ForbiddenSAM: "t"; /** Frozen SAM */ readonly FrozenSAM: "u"; /** PreOpening SAM */ readonly PreOpeningSAM: "v"; /** Opening SAM */ readonly OpeningSAM: "w"; /** Open SAM */ readonly OpenSAM: "x"; /** Surveillance SAM */ readonly SurveillanceSAM: "y"; /** Suspended SAM */ readonly SuspendedSAM: "z"; /** Reserved SAM */ readonly ReservedSAM: "0"; /** No Active SAM */ readonly NoActiveSAM: "1"; /** Restricted */ readonly Restricted: "2"; /** Rest of Book VWAP */ readonly RestOfBookVWAP: "3"; /** Better Prices in Conditional Orders */ readonly BetterPricesInConditionalOrders: "4"; /** Median Price */ readonly MedianPrice: "5"; /** Full Curve */ readonly FullCurve: "6"; /** Flat Curve */ readonly FlatCurve: "7"; }>; export type QuoteCondition = (typeof QuoteCondition)[keyof typeof QuoteCondition];