Hard

Design an Online Stock Brokerage System Object-Oriented Design Interview

Design a brokerage domain model covering accounts and portfolios, instruments, a cash ledger, market and limit orders, immutable fills, derived positions, order state transitions, and an external exchange gateway boundary — without building a matching engine.

1. Problem Statement

Design an online stock brokerage system: customers place market and limit orders to buy or sell instruments, orders are routed to an exchange and come back as fills (possibly partial), and the account's positions and cash update accordingly. The brokerage does not match orders itself. Start by clarifying scope and the core objects.

2. Live Coding Format

Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.

3. Key Focus Areas

  • 1
    Order lifecycle with market/limit types and partial fills
  • 2
    Immutable fills and positions derived from fills
  • 3
    Cash ledger, reservation, and buying-power policy
  • 4
    ExchangeGateway boundary (no matching engine)

4. What Strong Candidates Should Demonstrate

  • Model accounts, portfolios, orders, fills, and positions with a clear external market boundary.
  • Derive positions and cash from immutable fills rather than editing them independently.
  • Handle partial fills, cancels of remaining quantity, and a buying-power check.
  • Represent money precisely and route orders to an exchange gateway without matching them.

Want interactive feedback?

Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.

Continue to Dashboard

Core Concepts

Object-Oriented DesignDomain ModelingState MachineFinancial Modeling

Continue preparing

Build a complete software engineer mock interview plan

Related Object-Oriented Design

Design a Hotel Management System

Design a hotel domain model covering room types and rooms, guests, a half-open date-range value object, the reservation lifecycle, room assignment, check-in/out, and a charges folio, while preventing overlapping bookings on the same room.

Related Object-Oriented Design

Design a Restaurant Management System

Design a restaurant domain model covering tables and capacity, reservations for time slots, seated parties, a menu, orders with priced line items, kitchen status, and bills with payments, keeping booking and order/kitchen state transitions correct.

Related Object-Oriented Design

Design an Airline Management System

Design an airline domain model covering airports, aircraft seat layouts, scheduled flights versus dated flight instances, passengers, reservations and tickets, seat assignment, and flight status transitions.

Related Object-Oriented Design

Design an Online Shopping System

Design an online shopping domain model covering the product catalog, SKU inventory, shopping cart, order lines with snapshotted prices, a checkout flow, a payment boundary, and shipment state transitions.