@sotatech/nest-quickfix
Version:
A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.
23 lines (22 loc) • 611 B
TypeScript
export declare enum QuoteRequestRejectReason {
UnknownSymbol = 1,
Exchange = 2,
QuoteRequestExceedsLimit = 3,
TooLateToEnter = 4,
InvalidPrice = 5,
NotAuthorizedToRequestQuote = 6,
NoMatchForInquiry = 7,
NoMarketForInstrument = 8,
NoInventory = 9,
Pass = 10,
InsufficientCredit = 11,
ExceededClipSizeLimit = 12,
ExceededMaxNotionalOrderAmt = 13,
ExceededDV01PV01Limit = 14,
ExceededCS01Limit = 15,
UnavailablePriceLiquidity = 16,
UnmetRegulatoryRequirement = 17,
UnknownAccounts = 18,
InvalidMissingEntitlements = 19,
Other = 99
}