TargetPartyIDSource (FIX tag 1463)
TargetPartyIDSource (tag 1463) is a char field defined in FIX 5.0 SP2. It appears in 9 message types, always optionally.
At a glance
- Tag
- 1463
- Name
- TargetPartyIDSource
- Datatype
- char
- Dialects
- FIX 5.0 SP2
- Messages
- 9
What the specification says
PartyIDSource value within an target party repeating group.
Descriptions are quoted from the FIX Orchestra sources under the Apache 2.0 licence.
A real message using tag 1463
| Tag | Field | Wire value | Meaning |
|---|---|---|---|
| 8 | BeginString | FIXT.1.1 | |
| 9 | BodyLength | 129 | |
| 35 | MsgType | AF | OrderMassStatusRequest |
| 49 | SenderCompID | BOARTEAM | |
| 56 | TargetCompID | COUNTERPARTY | |
| 34 | MsgSeqNum | 2 | |
| 52 | SendingTime | 20240101-12:00:00.000 | |
| 584 | MassStatusReqID | EXAMPLE | |
| 585 | MassStatusReqType | 1 | Status for orders for a security |
| 1461 | NoTargetPartyIDs2 entries | 2 | repeating group |
| 1462 | TargetPartyID | EXAMPLE | |
| 1463 | TargetPartyIDSource | 1 | |
| 1462 | TargetPartyID | EXAMPLE | |
| 1463 | TargetPartyIDSource | 1 | |
| 10 | CheckSum | 102 |
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 5.0 SP2 dictionary and verified at build time: it parses and validates with no issues. Open the decoder to try your own message.
Where tag 1463 appears
Requiredness is a property of the message, not of the field: the same tag can be optional in one message and conditionally required in another.
| Message | MsgType | Requiredness | Where in the message |
|---|---|---|---|
| MassQuoteAcknowledgement | b | Optional | inside the TargetParties component |
| OrderMassActionReport | BZ | Optional | inside the TargetParties component |
| OrderMassActionRequest | CA | Optional | inside the TargetParties component |
| OrderMassCancelReport | r | Optional | inside the TargetParties component |
| OrderMassCancelRequest | q | Optional | inside the TargetParties component |
| OrderMassStatusRequest | AF | Optional | inside the TargetParties component |
| QuoteCancel | Z | Optional | inside the TargetParties component |
| QuoteStatusReport | AI | Optional | inside the TargetParties component |
| QuoteStatusRequest | a | Optional | inside the TargetParties component |
Wire format
A single character. Most char fields are enumerated, so the value is one of a fixed set rather than arbitrary text. @boarteam/fix keeps the value as a string and, for enumerated fields, reports validate/value-not-in-enum when it is not a defined value.
Read tag 1463 in TypeScript
import { createFixEngine } from "@boarteam/fix";import { dictionary } from "@boarteam/fix-dict-fix50sp2";const fix = createFixEngine(dictionary);const { message, issues } = fix.parse(raw);const field = message.fields[1463];field?.name; // "TargetPartyIDSource"field?.raw; // the verbatim wire stringfield?.value; // coerced to a stringOther char fields
- 1430VenueType
- 1416Nested4PartyIDSource
- 1395MarketUpdateAction
- 1391UnderlyingLegOptAttribute
- 1327TradSesUpdateAction
- 1324ListUpdateAction
- 1317DerivativeSettlMethod
- 1308ExecInstValue
- 1299DerivativeExerciseStyle
- 1265DerivativeOptAttribute
- 1255DerivativeInstrmtAssignmentMethod
- 1193SettlMethod
- 1164SettlObligSource
- 1162SettlObligTransType
- 1133ExDestinationIDSource
- 1124OrigTradeHandlingInstr
- 1123TradeHandlingInstr
- 1118RootPartyIDSource
- 1115OrderCategory
- 1111TriggerOrderType
- 1109TriggerPriceDirection
- 1108TriggerPriceTypeScope
- 1107TriggerPriceType
- 1101TriggerAction
Decode 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-fix50sp2