QuoteRequest (MsgType R)
QuoteRequest is the FIX message with MsgType R, defined in FIX 4.4, FIX 4.2 and FIX 5.0 SP2. It is an application-level message: it carries a business event rather than managing the session. Its body has 10 top-level members once the standard header and trailer are counted.
R is QuoteRequest, but r is a different message entirely — OrderMassCancelReport. Forty-six FIX message types differ from another only by letter case.A real QuoteRequest
| Tag | Field | Wire value | Meaning |
|---|---|---|---|
| 8 | BeginString | FIX.4.4 | |
| 9 | BodyLength | 92 | |
| 35 | MsgType | R | Quote Request |
| 49 | SenderCompID | BOARTEAM | |
| 56 | TargetCompID | COUNTERPARTY | |
| 34 | MsgSeqNum | 2 | |
| 52 | SendingTime | 20240101-12:00:00.000 | |
| 131 | QuoteReqID | EXAMPLE | |
| 146 | NoRelatedSym1 entry | 1 | repeating group |
| 55 | Symbol | EUR/USD | |
| 10 | CheckSum | 106 |
Shown with | separators for readability. On the wire FIX uses SOH (0x01), an invisible control byte — and because BodyLength and CheckSum are computed over the actual bytes, the two forms have different checksums. Both are valid and both decode here.
Generated from the FIX 4.4 dictionary and verified at build time: it parses and validates with no issues. Open the decoder to try your own message.
Message body — FIX 4.4
Components are listed by name and link to their own page rather than being expanded inline; repeating groups are expanded, including where they nest.
- —Standard Message HeadercomponentRequired
- 131QuoteReqIDRequired
- 644RFQReqIDOptional
- 11ClOrdIDConditional
- 528OrderCapacityOptional
- —QuotReqGrpcomponentRequired
- 58TextOptional
- 354EncodedTextLenConditional
- 355EncodedTextConditional
- —Standard Message TrailercomponentRequired
Message body — FIX 4.2
Components are listed by name and link to their own page rather than being expanded inline; repeating groups are expanded, including where they nest.
- —Standard Message HeadercomponentRequired
- 131QuoteReqIDRequired
- 146NoRelatedSymrepeating groupRequired
- 55SymbolRequired
- 65SymbolSfxOptional
- 48SecurityIDOptional
- 22SecurityIDSourceOptional
- 167SecurityTypeOptional
- 200MaturityMonthYearOptional
- 205MaturityDayOptional
- 201PutOrCallOptional
- 202StrikePriceOptional
- 206OptAttributeOptional
- 231ContractMultiplierOptional
- 223CouponRateOptional
- 207SecurityExchangeOptional
- 106IssuerOptional
- 348EncodedIssuerLenOptional
- 349EncodedIssuerOptional
- 107SecurityDescOptional
- 350EncodedSecurityDescLenOptional
- 351EncodedSecurityDescOptional
- 140PrevClosePxOptional
- 303QuoteRequestTypeOptional
- 336TradingSessionIDOptional
- 54SideOptional
- 38OrderQtyOptional
- 64SettlDateOptional
- 40OrdTypeOptional
- 193SettlDate2Optional
- 192OrderQty2Optional
- 126ExpireTimeOptional
- 60TransactTimeOptional
- 15CurrencyOptional
- —Standard Message TrailercomponentRequired
Message body — FIX 5.0 SP2
Components are listed by name and link to their own page rather than being expanded inline; repeating groups are expanded, including where they nest.
- —Standard Message HeadercomponentRequired
- 131QuoteReqIDRequired
- 644RFQReqIDOptional
- 11ClOrdIDOptional
- 775BookingTypeOptional
- 528OrderCapacityOptional
- 529OrderRestrictionsOptional
- 1171PrivateQuoteOptional
- 1172RespondentTypeOptional
- 1091PreTradeAnonymityOptional
- —RootPartiescomponentOptional
- —QuotReqGrpcomponentRequired
- 58TextOptional
- 354EncodedTextLenOptional
- 355EncodedTextOptional
- —Standard Message TrailercomponentRequired
What changed between the dialects
Present in FIX 4.2 only (1)
group 146
Present in FIX 5.0 SP2 only (6)
tag 775, tag 529, tag 1171, tag 1172, tag 1091, RootParties
Handle QuoteRequest in TypeScript
import { createFixEngine } from "@boarteam/fix";import { dictionary } from "@boarteam/fix-dict-fix44";const fix = createFixEngine(dictionary);const { message, issues } = fix.parse(raw);if (message.msgType === "R") { message.name; // "QuoteRequest" // fields are keyed by tag; repeating groups live on message.groups}// Problems come back as data, never as exceptions:issues; // FixIssue[]fix.validate(message); // dictionary-level problemsDecode this in your own code
The same engine that produced the decoded example above is an Apache-2.0 npm package with zero runtime dependencies. It runs in Node and in the browser, and parse() returns problems as data instead of throwing.
npm i @boarteam/fix @boarteam/fix-dict-fix44