A high-performance, lock-free price level implementation for limit order books in Rust. This library provides the building blocks for creating efficient trading systems with support for multiple order types and concurrent access patterns.
- Lock-free architecture for high-throughput trading applications
- Support for diverse order types including standard limit orders, iceberg orders, post-only, fill-or-kill, and more
- Thread-safe operations with atomic counters and lock-free data structures
- Efficient order matching and execution logic
- Designed with domain-driven principles for financial markets
- Comprehensive test suite demonstrating concurrent usage scenarios
- Built with crossbeam's lock-free data structures
- Optimized statistics tracking for each price level
- Memory-efficient implementations suitable for high-frequency trading systems
Perfect for building matching engines, market data systems, algorithmic trading platforms, and financial exchanges where performance and correctness are critical.
The library provides comprehensive support for various order types used in modern trading systems:
- Standard Limit Order: Basic price-quantity orders with specified execution price
- Iceberg Order: Orders with visible and hidden quantities that replenish automatically
- Post-Only Order: Orders that will not execute immediately against existing orders
- Trailing Stop Order: Orders that adjust based on market price movements
- Pegged Order: Orders that adjust their price based on a reference price
- Market-to-Limit Order: Orders that convert to limit orders after initial execution
- Reserve Order: Orders with custom replenishment logic for visible quantities
The library supports the following time-in-force policies:
- Good Till Canceled (GTC): Order remains active until explicitly canceled
- Immediate Or Cancel (IOC): Order must be filled immediately (partially or completely) or canceled
- Fill Or Kill (FOK): Order must be filled completely immediately or canceled entirely
- Good Till Date (GTD): Order remains active until a specified date/time
- Day Order: Order valid only for the current trading day
- Thread Safety: Uses atomic operations and lock-free data structures to ensure thread safety without mutex locks
- Order Queue Management: Specialized order queue implementation based on crossbeam's SegQueue
- Statistics Tracking: Each price level tracks execution statistics in real-time
- Snapshot Capabilities: Create point-in-time snapshots of price levels for market data distribution
- Efficient Matching: Optimized algorithms for matching incoming orders against existing orders
- Support for Special Order Types: Custom handling for iceberg orders, reserve orders, and other special types
- Atomic Counters: Uses atomic types for thread-safe quantity tracking
- Efficient Order Storage: Optimized data structures for order storage and retrieval
- Visibility Controls: Separate tracking of visible and hidden quantities
- Performance Monitoring: Built-in statistics for monitoring execution performance
- Order Matching Logic: Sophisticated algorithms for matching orders at each price level
The pricelevel
library has been thoroughly tested for performance in high-frequency trading scenarios. Below are the results from recent simulations conducted on an M4 Max processor, demonstrating the library's capability to handle intensive concurrent trading operations.
- Price Level: 10000
- Duration: 5000 ms (5 seconds)
- Threads: 30 total
- 10 maker threads (adding orders)
- 10 taker threads (executing matches)
- 10 canceller threads (cancelling orders)
- Initial Orders: 1000 orders seeded before simulation
Metric | Total Operations | Rate (per second) |
---|---|---|
Orders Added | 717,873 | 143,427.02 |
Matches Executed | 376,746 | 75,271.75 |
Cancellations | 227,454 | 45,444.04 |
Total Operations | 1,322,073 | 264,142.82 |
- Price: 10000
- Visible Quantity: 4,602,379
- Hidden Quantity: 4,042,945
- Total Quantity: 8,645,324
- Order Count: 706,258
- Orders Added: 718,873
- Orders Removed: 194
- Orders Executed: 403,727
- Quantity Executed: 1,130,216
- Value Executed: 11,302,160,000
- Average Execution Price: 10,000.00
- Average Waiting Time: 1,791.10 ms
- Time Since Last Execution: 0 ms
Performance under different levels of contention targeting specific price levels:
Hot Spot % | Operations/second |
---|---|
0% | 7,548,438.05 |
25% | 7,752,860.57 |
50% | 7,584,981.59 |
75% | 7,267,749.39 |
100% | 6,970,720.77 |
Performance under different read/write operation ratios:
Read % | Operations/second |
---|---|
0% | 6,353,202.47 |
25% | 34,727.89 |
50% | 28,783.28 |
75% | 31,936.73 |
95% | 54,316.57 |
The simulation demonstrates the library's exceptional performance capabilities:
- High-Frequency Trading: Over 264,000 operations per second in realistic mixed workloads
- Hot Spot Performance: Up to 7.75 million operations per second under optimal conditions
- Write-Heavy Workloads: Over 6.3 million operations per second for pure write operations
- Lock-Free Architecture: Maintains high throughput with minimal contention overhead
The performance characteristics demonstrate that the pricelevel
library is suitable for production use in high-performance trading systems, matching engines, and other financial applications where microsecond-level performance is critical.
- Clone the repository:
git clone https://github.com/joaquinbejar/PriceLevel.git
cd PriceLevel
- Build the project:
make build
- Run tests:
make test
- Format the code:
make fmt
- Run linting:
make lint
- Clean the project:
make clean
- Run the project:
make run
- Fix issues:
make fix
- Run pre-push checks:
make pre-push
- Generate documentation:
make doc
- Publish the package:
make publish
- Generate coverage report:
make coverage
To use the library in your project, add the following to your Cargo.toml
:
[dependencies]
pricelevel = { git = "https://github.com/joaquinbejar/PriceLevel.git" }
Here are some examples of how to use the library:
To run unit tests:
make test
To run tests with coverage:
make coverage
We welcome contributions to this project! If you would like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and ensure that the project still builds and all tests pass.
- Commit your changes and push your branch to your forked repository.
- Submit a pull request to the main repository.
If you have any questions, issues, or would like to provide feedback, please feel free to contact the project maintainer:
Joaquín Béjar García
- Email: jb@taunais.com
- GitHub: joaquinbejar
We appreciate your interest and look forward to your contributions!
License: MIT