backtest-kit 8.3.0 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,15 +46,17 @@ Sidekick generates a project where the exchange adapter, frame definitions, risk
|
|
|
46
46
|
|
|
47
47
|
### 🐳 Running in Docker
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
> **Automatic restarts — Zero-downtime trading:**
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
52
|
npx @backtest-kit/cli --docker
|
|
53
53
|
cd backtest-kit-docker
|
|
54
|
-
docker-compose up -d
|
|
54
|
+
MODE=live SYMBOL=TRXUSDT UI=1 docker-compose up -d
|
|
55
55
|
docker-compose logs -f
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
+
CLI can create a ready-to-use Docker workspace: self-contained directory with `docker-compose.yaml` and a strategy entry point.
|
|
59
|
+
|
|
58
60
|
### 📦 Manual Installation
|
|
59
61
|
|
|
60
62
|
> **Want to see the code?** 👉 [Demo app](https://github.com/tripolskypetr/backtest-kit/tree/master/example) 👈
|
|
@@ -63,6 +65,8 @@ docker-compose logs -f
|
|
|
63
65
|
npm install backtest-kit ccxt ollama uuid
|
|
64
66
|
```
|
|
65
67
|
|
|
68
|
+
Install the core library and peer dependencies manually. Use this approach when integrating backtest-kit into an existing project or when you need full control over your package setup.
|
|
69
|
+
|
|
66
70
|
## ✨ Why Choose Backtest Kit?
|
|
67
71
|
|
|
68
72
|
- 🚀 **Production-Ready**: Seamless switch between backtest/live modes; identical code across environments.
|