-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# mmb Design Specification | ||
|
||
## Short-term Development Goal | ||
|
||
Create core engine and modular structure to enable connection to multiple order books and multiple exchanges. | ||
|
||
## User Stories aka Outcomes sought aka Long-term Goals | ||
|
||
Language: Use modern, stable Rust for core program. Use Rust for scripts, as a 1st choice, when possible. | ||
|
||
Control Plane: User controls interactions via RESTful API. | ||
|
||
Multi-exchange support: MVP is a single exchange support. Future developers can author exchange modules, to expand the system. | ||
|
||
Multi-strategy support: MVP is a single strategy (akin to hummingbot's pure_market_making). Future developers can author strategy modules, to expand the system. | ||
|
||
Order book updates: (Perhaps, states the obvious) Program must be able to receive order book full-update and delta-update, either via polling (usually HTTPS/JSON) or streaming (usually WebSocket) | ||
|
||
Asset tracking model: (Perhaps, states the obvious) Program requires some method of tracking capital in its various states: in flight (waiting for blockchain confirmations), at exchange, inside exchange's trading engine, and in-orders. It is likely that capital must be allocated to specific Strategy Plans or Buckets, to virtually separate capital as strategies execute in parallel. | ||
|