Educational multi-process trading system with order matching
Project description
EduMatcher
Learn how real trading systems work. Build it from first principles.
| Category | Link |
|---|---|
| Package | |
| Documentation | |
| License | |
| Release | |
| CI/CD | |
| Code Quality | |
| Repo URL |
EduMatcher is an educational trading system that teaches market microstructure, matching logic, and exchange architecture through runnable code.
Why EduMatcher?
- Real exchange mechanics: order books, auctions, clearing, and risk controls
- Multi-process architecture: gateway, engine, audit, clearing, stats, and tooling
- Performance-aware implementation: ~80,000 orders/second with microsecond latency on a Linux server
- Practical protocol design: ALF (ALmost Fix) command language for gateway order entry, RALF (Reconciliation ALF) for post trade consumers and CALF (Channel ALF) to serve market data to subscribers, and finally BALF (Binary ALF) for high performance trade clients
- Strong engineering discipline: type hints, linting, and high test coverage
Key Features
- Complete lifecycle: order entry, matching, clearing, and audit trail
- Rich order support: MARKET, LIMIT, STOP, STOP_LIMIT, IOC/FOK, ICEBERG, combo, OCO
- Market mechanisms: opening/closing auctions
- Risk handling with circuit breakers and price collars
- Message-based process boundaries with strong observability
- Implement real risk controls such as prioce-collar, kill-switch, circuit-breaker, and mass-cancel
- Easy to understand configuration through single source
engine_config.yamlwhich acts as the system reference data. To simplify its creation a CLI toolpm-config-gencan be used and a handwritten config file can be verified withpm-cverifier
Documentation
Main documentation site EduMatcher Documentation that among other things includes:
- How an Exchange Works: a primer on exchange mechanics and market microstructure concepts aimed at software developers with no prior financial experience
- Exchange Concepts: deep dive in core technical concept of an exchange
- User Guide: step-by-step instructions for installation, configuration, and running EduMatcher
- Training Material: self-paced exercises to learn how to setup and manage the Exchange
- Architecture: an overview of the SW architecture
- Developer Guide: deep dive into the architecture, design decisions, and code structure. Necessary reading for anyone wanting to contribute!
- Glossary: the finance world uses lot of specialized terms, this glossary lists the most important with an explanation
Installing
Note: Running an exchange is an inherent complex task and unfortunately it is only so much that can be simplified. However, going throught the user guide and training material should give a great start!
Performance
EduMatcher does not aim to match venues like NYSE or LSE, but it is still fairly fast for a purely Python educational project. The figures below reflect the performance on an high end Linux server with risk checks enabled (price collar and circuit-breaker).
Latency (engine-only, n=1,000 each)
| Order type | min (µs) | median (µs) | P80 (µs) | P90 (µs) | max (µs) |
|---|---|---|---|---|---|
| Limit | 13.1 | 15.0 | 15.4 | 15.7 | 155.7 |
| Market | 12.1 | 13.9 | 15.2 | 15.7 | 73.6 |
Throughput
| Metric | Value |
|---|---|
| Max TPS | ~81,000 orders/second |
| µs / order (mean) | 12.4 µs |
| Order mix | 20% Market, 30% aggressive Limit, 50% passive Limit |
Performance note: price-collar and circuit-breaker checks run in the hot path for every match. They are required for realistic risk control and add measurable cost.
Key Functional and Infrastructure Limitations
- No spread-order books
- No implied (synthetic) orders
- No primary-secondary automatic site failover
- No load balancing
- Limited replay for participants that lose the connection
Citation
If you use this tool in teaching or courses, please cite:
@software{edumatcher,
title = {EduMatcher},
author = {Johan Persson},
year = {2026},
url = {https://github.com/johan162/EduMatcher},
version = {0.14.0}
}
License
MIT License - see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file edumatcher-0.14.0.tar.gz.
File metadata
- Download URL: edumatcher-0.14.0.tar.gz
- Upload date:
- Size: 282.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.12.3 Linux/6.17.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89723a908ba3abbbf53ef5e8c922ec738457db5c56af6009992745dc47e47efe
|
|
| MD5 |
08da0410f5b24177d4ca9e30b5732b9a
|
|
| BLAKE2b-256 |
66f571d00867f429fc8a669cdf9a5c80b77915d85733c6b459a295543d5a02c0
|
File details
Details for the file edumatcher-0.14.0-py3-none-any.whl.
File metadata
- Download URL: edumatcher-0.14.0-py3-none-any.whl
- Upload date:
- Size: 342.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.12.3 Linux/6.17.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c463c914180938e29c6b9038e0952e9a1261eaf4197a05922f391bdd5208092
|
|
| MD5 |
c1e82e7aef980f1b0e7df598ff33aea7
|
|
| BLAKE2b-256 |
a7f784719ae2f720637998afb26f6d444fa06c9cb66ba8b925cbf6011a510dd3
|