5 exercises — Practice FinTech vocabulary in English: FIX protocol, ISO 20022 messages, trade lifecycle, clearing and settlement, and regulatory reporting.
A quant developer explains the FIX protocol to a new team member: "FIX — Financial Information eXchange — is the industry standard for electronic order routing. It's been around since 1992. A FIX message is a series of tag=value pairs separated by a delimiter. Tag 35 is MsgType — it tells you what kind of message it is. MsgType D is a New Order Single. When the broker receives it, they send back an Execution Report (MsgType 8) with the current state. Tag 39 — OrdStatus — tells you if the order is New (0), Partially Filled (1), Filled (2), Cancelled (4), or Rejected (8)." What is a ClOrdID in FIX and why is it important?
ClOrdID (Tag 11): the client-assigned unique identifier for an order. Must be unique per order. Purpose: correlating execution reports (MsgType 8) back to the originating order. Required in cancel requests (Tag 41 = OrigClOrdID must reference the original ClOrdID). FIX message vocabulary: MsgType (Tag 35): message type. Key values: D = New Order Single, F = Order Cancel Request, G = Order Cancel/Replace Request, 8 = Execution Report, j = Business Message Reject. OrdStatus (Tag 39): current order state. 0 = New, 1 = Partially Filled, 2 = Filled, 4 = Cancelled, 8 = Rejected, A = Pending New. ExecType (Tag 150): what happened. 0 = New, 1 = Partial Fill, 2 = Fill, 4 = Cancelled, 8 = Rejected. Side (Tag 54): 1 = Buy, 2 = Sell, 5 = Sell Short. OrdType (Tag 40): 1 = Market, 2 = Limit, 3 = Stop. CumQty (Tag 14): total quantity filled to date. LeavesQty (Tag 151): quantity remaining to be filled. FIX session vocabulary: Logon (A): initiates a FIX session. Heartbeat (0): keepalive. Logout (5): terminates session. SeqNum (Tag 34): message sequence number for gap detection. In conversation: 'Always store ClOrdID and the exchange's OrdID. When reconciliation discrepancies appear, you need both to track down what happened.'
2 / 5
A payments engineer introduces ISO 20022 to a legacy system migration team: "ISO 20022 is the modern financial messaging standard, replacing SWIFT MT messages. Where FIX uses tag=value pairs, ISO 20022 uses structured XML with rich data. Message names follow a pattern: first four letters are the business area (pacs = payments clearing settlement, pain = payment initiation, camt = cash management). Then a three-digit number. pacs.008 is a customer credit transfer — sending money from one bank to another. pain.001 is a customer credit transfer initiation — the corporate telling their bank to make a payment. camt.056 is a payment cancellation request." What distinguishes ISO 20022 from legacy SWIFT MT messages?
SWIFT MT (Message Type): legacy format since the 1970s. MT103 = customer credit transfer. MT202 = bank-to-bank transfer. Field-based, limited data. ISO 20022: XML-based. Richer data model — standardised names, addresses, purpose codes, LEI. Benefits: reduces repair queues (ambiguous data in MT causes manual intervention), enables compliance (full originator/beneficiary data for AML/sanctions screening), richer remittance information. ISO 20022 message family vocabulary: pacs (Payments Clearing and Settlement): interbank messages. pacs.008: FI to FI customer credit transfer. pacs.009: FI to FI financial institution credit transfer. pain (Payment Initiation): corporate-to-bank messages. pain.001: customer credit transfer initiation. pain.002: customer payment status report. camt (Cash Management): account reporting. camt.052: bank-to-customer account report. camt.053: bank statement. camt.056: payment cancellation request. Financial identifier vocabulary: LEI (Legal Entity Identifier): 20-character ISO standard for legal entities. Required for MiFID II reporting. ISIN (International Securities Identification Number): 12-character security identifier. BIC (Bank Identifier Code): identifies banks in SWIFT messages. IBAN (International Bank Account Number): standardised account number format. In conversation: 'The ISO 20022 migration is the biggest change to payment infrastructure in 30 years. Getting your data model right now prevents years of costly mapping.'
3 / 5
A settlements engineer explains the trade lifecycle to a new hire: "When you buy 100 shares: first, execution — your order matches with a seller on the exchange. Then confirmation — both parties confirm the trade details. Then clearing — the CCP (Central Counterparty) steps in between buyer and seller, becoming buyer to every seller and seller to every buyer. This eliminates counterparty risk. Finally, settlement — T+1 in the US since 2024 — actual exchange of securities and cash. DVP — Delivery versus Payment — means the securities only move when the cash moves, preventing one side from defaulting after delivery." What is T+1 settlement and why did regulators move from T+2?
Settlement cycle: the time between trade execution (T) and final settlement. T+2 was the US standard until 2024; T+1 since May 2024. Why T+1? Shorter exposure window — less time for market prices to move against one party. Less collateral required. Reduces systemic risk in volatile markets (the GameStop short squeeze showed T+2 collateral requirements could be destabilising). Trade lifecycle vocabulary: Execution: order matches with a counterparty. Exchange confirms a trade. Trade confirmation: both sides agree on trade details (instrument, quantity, price, settlement date). CCP (Central Counterparty): intermediary that becomes the counterparty to both sides. Manages margin and default risk. Examples: DTCC (US), LCH, Eurex Clearing. Clearing: process of reconciling orders between transacting parties, managed by CCP. Includes netting — offsetting buy and sell positions to reduce gross settlement amounts. Settlement: final transfer of securities (DvP — delivery vs. payment). DvP (Delivery versus Payment): securities delivered only when cash payment is received. Prevents delivery risk. Margin: collateral deposited with the CCP to cover potential losses during the settlement cycle. Initial margin + variation margin. DTCC (Depository Trust & Clearing Corporation): US CCP for equities and bonds. In conversation: 'T+1 sounds like a minor operational change but required massive systems overhaul — especially for international participants who had to reconcile across time zones in one day instead of two.'
4 / 5
A compliance officer explains MiFID II transaction reporting to a trading firm's tech team: "MiFID II (EU) requires reporting every trade in a financial instrument to a trade repository within one day. You report to an ARM — Approved Reporting Mechanism. Each report contains over 60 fields: LEI of the buyer and seller, ISIN of the instrument, price, quantity, venue, timestamp. The data quality bar is high — errors get flagged by regulators. EMIR has similar requirements for derivatives. Dodd-Frank requires reporting to a Swap Data Repository in the US. The goal: give regulators a full picture of market activity to detect manipulation." What is an LEI (Legal Entity Identifier) and why is it required for regulatory reporting?
LEI (Legal Entity Identifier): a 20-character alphanumeric code identifying legal entities uniquely across the world. Issued by LOUs (Local Operating Units) accredited by GLEIF (Global LEI Foundation). Annual renewal required. Format: 4-char LOU prefix + 14-char entity-specific code + 2-char check digits. Why it exists: before LEIs, identifying counterparties cross-border was inconsistent (different national identifiers). LEIs give regulators a universal way to aggregate exposure data. Regulatory vocabulary: MiFID II (Markets in Financial Instruments Directive II): EU regulation for financial markets. Transaction reporting, best execution, pre/post-trade transparency. EMIR (European Market Infrastructure Regulation): OTC derivative trade reporting, clearing obligations, risk mitigation. Dodd-Frank Act: US equivalent. Swap reporting to SDRs. Volcker Rule (proprietary trading limits). ARM (Approved Reporting Mechanism): approved third-party service for MiFID II transaction reporting to regulators (FCA, ESMA). Trade Repository (TR): for EMIR derivative reporting. SDR (Swap Data Repository): US equivalent for Dodd-Frank. ISIN (International Securities Identification Number): 12-character identifier for securities. Country code + NSIN + check digit. Required in transaction reports. In conversation: 'An expired LEI is a compliance violation. We monitor LEI renewals 60 days out — a trading firm with an expired LEI cannot legally report trades.'
5 / 5
A trading infrastructure engineer explains market structure vocabulary: "Orders can route to different venues. The primary exchange (NYSE, NASDAQ) is transparent — orders in the order book are visible. ECNs (Electronic Communication Networks) are also lit. Dark pools are alternative trading systems where orders are anonymous — useful for large block trades that would move the market if visible. Your prime broker provides leverage, stock borrow for short selling, and consolidated reporting. The custodian holds the actual securities. For large institutions, prime brokerage and custody are separate — they serve different functions." What is a dark pool and in what scenarios is it preferred over a lit exchange?
Dark pool: an Alternative Trading System (ATS) or Multilateral Trading Facility (MTF) where orders are not displayed before execution. Pre-trade transparency is "dark." Post-trade reporting is required. Used for: block trades (large orders that would signal intent to the market, causing the price to move against the buyer/seller before execution), algorithmic execution of institutional orders. Market impact: if a large buy order is visible in a lit order book, other traders see it and buy ahead of it — pushing the price up before the large order can fill. Dark pools mitigate this. Market structure vocabulary: Lit exchange: visible order book. Pre-trade and post-trade transparency. NYSE, NASDAQ, LSE. ECN (Electronic Communication Network): lit electronic venue for matching orders. BATS, IEX. ATS (Alternative Trading System): US regulatory category including dark pools. MTF (Multilateral Trading Facility): EU equivalent of ATS. Market maker: provides liquidity by continuously quoting bid and ask prices. Profits from the spread. Bid-ask spread: difference between highest buy price and lowest sell price. Measure of liquidity. Prime broker: provides margin lending, securities lending (for short selling), consolidated clearing, and reporting. Custodian: holds assets (securities, cash) on behalf of clients. Segregated from the custodian's own assets. In conversation: 'For a 5M share block trade, routing to the dark pool saves potentially 50 basis points in market impact — far more than the venue fee difference.'