Market Making RL - simulation, experiments, and CLI
Project description
Market Making RL Agent
Why this is useful
- End-to-end, deployable research stack: config-driven envs, MLflow tracking, CLI, REST API with async jobs, and DuckDB persistence
- Microstructure features that matter: OU price dynamics with regime switching, probabilistic fills, fees/slippage, multi-asset correlation, depth-aware quoting, size decisions
- Baselines and RL: Naive, Inventory-aware, Avellaneda–Stoikov, PPO; hyperparameter search with Optuna
60s Quickstart
pip install -r requirements.txt
mmrl backtest
mmrl evaluate # Naive vs Rule-Based vs A–S vs PPO
mmrl analyze strategy_comparison.csv --plot # analyze your returns file
Colab Notebooks
Multi-asset
- Configure under
multi_assetinconfigs/inventory.yaml - Run:
python3 experiments/evaluate_multi_asset.py
python3 analysis/plot_multi_asset.py results/.../multi_asset_history.csv
API
- Start stack:
docker compose up -d redis worker api mlflow
curl http://localhost:8000/health
curl http://localhost:8000/config/schema # config JSON schema
- Submit jobs:
curl -X POST http://localhost:8000/backtest -H 'Content-Type: application/json' -d '{"steps": 200}'
curl -X POST http://localhost:8000/grid -H 'Content-Type: application/json' -d '{"execution": {"alpha_grid": [1.0, 1.5]}}'
curl http://localhost:8000/trades/<run_id>?limit=100
curl http://localhost:8000/runs/<run_dir_name>/artifacts
curl -L -o run.zip http://localhost:8000/runs/<run_dir_name>/download
Hyperparameter Optimization
python3 experiments/hyperopt.py
Notable features
- Multi-asset Gym wrapper with per-asset, per-level actions (offsets + sizes)
- Depth-aware agent placing quotes at multiple levels with regime-conditioned parameters
- DuckDB persistence of runs/metrics/trades and a
/trades/{run_id}endpoint - MLflow logging of params, metrics, artifacts with run IDs written per run
- CLI extras:
mmrl fetch-data(CCXT sample),mmrl config-validate,mmrl config-schema
Roadmap
- Postgres-backed storage and public demo deployment
- Size-aware RL policy across multi-asset Gym env
- Notebooks + Colab badges for quick experimentation
Packaging
- Install from source or build wheel with
python -m build(requiresbuild). - Optional extras:
mmrl[api]for FastAPI stackmmrl[rl]for Gymnasium/SB3
Data utilities
- Fetch sample trades to Parquet:
python3 -m mmrl.cli fetch-data --exchange binance --symbol BTC/USDT --limit 1000 --out data/btcusdt.parquet
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mmrl-0.1.0.tar.gz
(35.4 kB
view details)
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
mmrl-0.1.0-py3-none-any.whl
(42.5 kB
view details)
File details
Details for the file mmrl-0.1.0.tar.gz.
File metadata
- Download URL: mmrl-0.1.0.tar.gz
- Upload date:
- Size: 35.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de026773a108a60db0f014fafc4d40a2a235e23e24bf707eb57811492339ec5b
|
|
| MD5 |
ba8547db863aec0261cff4dfeada46e9
|
|
| BLAKE2b-256 |
0b8633654e4baa94e784543a0627dc4cc9edd3caf178f4e0fd2178227a1c725c
|
File details
Details for the file mmrl-0.1.0-py3-none-any.whl.
File metadata
- Download URL: mmrl-0.1.0-py3-none-any.whl
- Upload date:
- Size: 42.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f752185c73201583121e7ebba751504735abe2b893d1255b7bc184687ed95c74
|
|
| MD5 |
9982db30da3663d1ceafacd0be8c28c5
|
|
| BLAKE2b-256 |
d7e6b31a7b02dd519f10a949b4004d0eb3201af9dc66b2f9752161de5e759ff3
|