Skip to content
PPreptima

Capital Markets interview questions

Trading, clearing and settlement systems, where correctness is measured in audit trails and the constraints are latency, determinism and an immovable settlement calendar.

14 published across 7 topics.

Capital markets fundamentals59 short answers on one page, for revising rather than studying.

Order Lifecycle

2 questions

Order types and validation, routing, matching by price-time priority, fills and execution reports.

mediumConceptScenario

Walk me through the lifecycle of an equity order from the click to settlement.

An equity order is validated and risk-checked at the broker, routed to a venue, matched by price-time priority into one or more fills reported back as execution reports, allocated to end accounts, novated to a clearing house that becomes the counterparty, and finally settled against cash at the custodian on T+1.

7 minmid, senior, staff

Market Data

2 questions

Feed handling at volume, sequencing and gap recovery, order-book reconstruction, and replay.

hardCodingDesign

How would you design an order book, and what makes it hard?

An order book is price levels in price order, each holding a time-ordered queue of orders, plus an ID index so a cancel is O(1); the hard parts are that cancels dominate the flow, the feed must be gap-checked and recoverable, and replay must be deterministic and allocation-free.

7 minsenior, staff

Clearing & Settlement

2 questions

Novation, the clearing house, margin, T+1, and settlement failure.

Custody & Asset Servicing

2 questions

Positions and holdings, corporate actions, and reconciling records against a custodian.

hardDesignScenario

A corporate action is confirmed with an effective date in the past, after you have already struck positions and sent statements. How does your system cope?

By storing when something became true separately from when you learned it, so the old report stays reproducible while the corrected position takes effect from the event date. The engineering work is in the fan-out to everything already derived from the wrong quantity, not in the entitlement posting itself.

5 minmid, senior, staff

Risk & Margin

2 questions

Pre-trade limits, real-time exposure, margin calculation, and the kill switch.

Post-trade Processing

2 questions

Allocation, confirmation and affirmation, trade repair, and the middle-office workflow.

Execution & Algorithms

2 questions

Execution algorithms, smart order routing, and transaction-cost analysis.