UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

59 lines (58 loc) 2.1 kB
/** * Order type. *** SOME VALUES ARE NO LONGER USED - See "Deprecated (Phased-out) Features and Supported Approach" *** (see Volume : "Glossary" for value definitions) * - Tag: 40 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const OrdType: Readonly<{ /** Market */ readonly Market: '1'; /** Limit */ readonly Limit: '2'; readonly Stop: '3'; readonly StopLimit: '4'; /** Market On Close (No longer used) */ readonly MarketOnClose: '5'; /** With Or Without */ readonly WithOrWithout: '6'; /** Limit Or Better */ readonly LimitOrBetter: '7'; /** Limit With Or Without */ readonly LimitWithOrWithout: '8'; /** On Basis */ readonly OnBasis: '9'; /** On Close (No longer used) */ readonly OnClose: 'A'; /** Limit On Close (No longer used) */ readonly LimitOnClose: 'B'; /** Forex Market (No longer used) */ readonly ForexMarket: 'C'; /** Previously Quoted */ readonly PreviouslyQuoted: 'D'; /** Previously Indicated */ readonly PreviouslyIndicated: 'E'; /** Forex Limit (No longer used) */ readonly ForexLimit: 'F'; /** Forex Swap */ readonly ForexSwap: 'G'; /** Forex Previously Quoted (No longer used) */ readonly ForexPreviouslyQuoted: 'H'; /** Funari (Limit day order with unexecuted portion handles as Market On Close. E.g. Japan) */ readonly Funari: 'I'; /** Market If Touched (MIT) */ readonly MarketIfTouched: 'J'; /** Market With Left Over as Limit (market order with unexecuted quantity becoming limit order at last price) */ readonly MarketWithLeftOverAsLimit: 'K'; /** Previous Fund Valuation Point (Historic pricing; for CIV) */ readonly PreviousFundValuationPoint: 'L'; /** Next Fund Valuation Point (Forward pricing; for CIV) */ readonly NextFundValuationPoint: 'M'; /** Pegged */ readonly Pegged: 'P'; /** Counter-order selection */ readonly CounterOrderSelection: 'Q'; readonly StopOnBidOrOffer: 'R'; readonly StopLimitOnBidOrOffer: 'S'; }>;