fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
54 lines (53 loc) • 1.89 kB
TypeScript
/**
* Reason Quote was rejected:
* - Tag: 300
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const QuoteRejectReason: Readonly<{
readonly UnknownSymbol: 1;
/** Exchange (security) closed */
readonly Exchange: 2;
/** Quote Request exceeds limit */
readonly QuoteRequestExceedsLimit: 3;
/** Too late to enter */
readonly TooLateToEnter: 4;
/** Unknown quote */
readonly UnknownQuote: 5;
/** Duplicate quote */
readonly DuplicateQuote: 6;
/** Invalid bid/ask spread */
readonly InvalidBid: 7;
readonly InvalidPrice: 8;
/** Not authorized to quote security */
readonly NotAuthorizedToQuoteSecurity: 9;
/** Price exceeds current price band */
readonly PriceExceedsCurrentPriceBand: 10;
/** Quote locked - unable to update/cancel */
readonly QuoteLocked: 11;
/** Invalid or unknown security issuer */
readonly InvalidOrUnknownSecurityIssuer: 12;
/** Invalid or unknown issuer of underlying security */
readonly InvalidOrUnknownIssuerOfUnderlyingSecurity: 13;
/** Notional value exceeds threshold */
readonly NotionalValueExceedsThreshold: 14;
/** Price exceeds current price band */
readonly PriceExceedsCurrentPriceBandDepr: 15;
/** Reference price not available */
readonly ReferencePriceNotAvailable: 16;
readonly InsufficientCreditLimit: 17;
/** Exceeded clip size limit */
readonly ExceededClipSizeLimit: 18;
/** Exceeded maximum notional order amount */
readonly ExceededMaxNotionalOrderAmt: 19;
/** Exceeded DV01/PV01 limit */
readonly ExceededDV01PV01Limit: 20;
/** Exceeded CS01 limit */
readonly ExceededCS01Limit: 21;
readonly UnavailablePriceLiquidity: 22;
readonly InvalidMissingEntitlements: 23;
readonly UnknownAccounts: 24;
readonly Other: 99;
}>;