A high-performance, in-memory order matching engine written in Go. Designed for crypto exchanges, trading simulations, and financial systems requiring precise and fast order execution.
- High Performance: Pure in-memory matching using efficient SkipList data structures ($O(\log N)$) and Disruptor pattern (RingBuffer) for microsecond latency.
- Single Thread Actor: Adopts a Lock-Free architecture where a single pinned goroutine processes all state mutations. This eliminates context switching and mutex contention, maximizing CPU cache locality.
- Concurrency Safe: All state mutations are serialized through the RingBuffer, eliminating race conditions without heavy lock contention.
-
Zero-Allocation: Uses
udecimal(uint64-based) and extensive object pooling to minimize GC pressure on hot paths. -
Multi-Market Support: Manages multiple trading pairs (e.g., BTC-USDT, ETH-USDT) within a single
MatchingEngineinstance. - Management Commands: Dynamic market management (Create, Suspend, Resume, UpdateConfig) via Event Sourcing.
-
Comprehensive Order Types:
-
Limit,Market(Size or QuoteSize),IOC,FOK,Post Only - Iceberg Orders: Support for hidden size with automatic replenishment.
-
-
Event Sourcing: Generates detailed
OrderBookLogevents allows for deterministic replay and state reconstruction.
go get github.com/0x5487/matching-enginepackage main
import (
"context"
"fmt"
"time"
match "github.com/0x5487/matching-engine"
"github.com/0x5487/matching-engine/protocol"
"github.com/quagmt/udecimal"
)
func main() {
ctx := context.Background()
// 1. Create a PublishLog handler (implement your own for non-memory usage)
publish := match.NewMemoryPublishLog()
// 2. Initialize the Matching Engine
engine := match.NewMatchingEngine(publish)
// 3. Start the Engine (Actor Loop)
// This must be run in a separate goroutine
go func() {
if err := engine.Run(); err != nil {
panic(err)
}
}()
// 4. Create a Market
// This cmd is now async and thread-safe via RingBuffer
if err := engine.CreateMarket("admin", "BTC-USDT", "0.00000001"); err != nil {
panic(err)
}
// 5. Place a Sell Limit Order
sellCmd := &protocol.PlaceOrderCommand{
OrderID: "sell-1",
OrderType: protocol.OrderTypeLimit,
Side: protocol.SideSell,
Price: udecimal.MustFromInt64(50000, 0).String(), // 50000
Size: udecimal.MustFromInt64(1, 0).String(), // 1.0
UserID: 1001,
}
if err := engine.PlaceOrder(ctx, "BTC-USDT", sellCmd); err != nil {
fmt.Printf("Error placing sell order: %v\n", err)
}
// 6. Place a Buy Limit Order (Matches immediately)
buyCmd := &protocol.PlaceOrderCommand{
OrderID: "buy-1",
OrderType: protocol.OrderTypeLimit,
Side: protocol.SideBuy,
Price: udecimal.MustFromInt64(50000, 0).String(), // 50000
Size: udecimal.MustFromInt64(1, 0).String(), // 1.0
UserID: 1002,
}
if err := engine.PlaceOrder(ctx, "BTC-USDT", buyCmd); err != nil {
fmt.Printf("Error placing buy order: %v\n", err)
}
// Allow some time for async processing
time.Sleep(100 * time.Millisecond)
// 7. Check Logs
fmt.Printf("Total events: %d\n", publish.Count())
logs := publish.Logs()
for _, log := range logs {
switch log.Type {
case protocol.LogTypeMatch:
fmt.Printf("[MATCH] TradeID: %d, Price: %s, Size: %s\n",
log.TradeID, log.Price, log.Size)
case protocol.LogTypeOpen:
fmt.Printf("[OPEN] OrderID: %s, Price: %s\n", log.OrderID, log.Price)
}
}
}The engine supports dynamic market management:
// Suspend a market (rejects new Place/Amend orders)
engine.SuspendMarket("BTC-USDT")
// Resume a market
engine.ResumeMarket("BTC-USDT")
// Update market configuration (e.g. MinLotSize)
newLotSize := "0.01"
engine.UpdateConfig("BTC-USDT", &newLotSize)| Type | Description |
|---|---|
Limit |
Buy/sell at a specific price or better |
Market |
Execute immediately at best available price. Supports Size (base currency) or QuoteSize (quote currency). |
IOC |
Fill immediately, cancel unfilled portion. |
FOK |
Fill entirely immediately or cancel completely. |
PostOnly |
Add to book as maker only, reject if would match immediately. |
Implement PublishLog interface to handle order book events:
type MyHandler struct{}
func (h *MyHandler) Publish(logs []*match.OrderBookLog) {
for _, log := range logs {
// Send to WebSocket, save to DB, publish to MQ, etc.
if log.Type == protocol.LogTypeUser {
fmt.Printf("User Event: %s, Data: %s\n", log.EventType, string(log.Data))
} else {
fmt.Printf("Event: %s | OrderID: %s\n", log.Type, log.OrderID)
}
}
}Inject custom events into the matching engine's log stream. These events are processed sequentially with trades, ensuring deterministic ordering for valid use cases like L1 Block Boundaries, Audit Checkpoints, or Oracle Updates.
// Example: Sending an End-Of-Block signal from an L1 Blockchain
blockHash := []byte("0x123abc...")
// SendUserEvent(userID, eventType, key, data)
err := engine.SendUserEvent(999, "EndOfBlock", "block-100", blockHash)The event will appear in the PublishLog stream as LogTypeUser with your custom data payload.
Please refer to doc for detailed benchmarks.