backtest-kit 1.12.3 → 1.13.2
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 +21 -21
- package/build/index.cjs +3611 -1304
- package/build/index.mjs +3602 -1305
- package/package.json +1 -1
- package/types.d.ts +3461 -1366
package/README.md
CHANGED
|
@@ -14,6 +14,27 @@ Build reliable trading systems: backtest on historical data, deploy live bots wi
|
|
|
14
14
|
|
|
15
15
|
📚 **[API Reference](https://backtest-kit.github.io/documents/example_02_first_backtest.html)** | 🌟 **[Quick Start](https://github.com/tripolskypetr/backtest-kit/tree/master/demo)** | **📰 [Article](https://backtest-kit.github.io/documents/article_02_second_order_chaos.html)**
|
|
16
16
|
|
|
17
|
+
## 🚀 Quick Start
|
|
18
|
+
|
|
19
|
+
### 🎯 The Fastest Way: Sidekick CLI
|
|
20
|
+
|
|
21
|
+
> **Create a production-ready trading bot in seconds:**
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
# Create project with npx (recommended)
|
|
25
|
+
npx -y @backtest-kit/sidekick my-trading-bot
|
|
26
|
+
cd my-trading-bot
|
|
27
|
+
npm start
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### 📦 Manual Installation
|
|
31
|
+
|
|
32
|
+
> **Want to see the code?** 👉 [Demo app](https://github.com/tripolskypetr/backtest-kit/tree/master/demo) 👈
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm install backtest-kit ccxt ollama uuid
|
|
36
|
+
```
|
|
37
|
+
|
|
17
38
|
## ✨ Why Choose Backtest Kit?
|
|
18
39
|
|
|
19
40
|
- 🚀 **Production-Ready**: Seamless switch between backtest/live modes; identical code across environments.
|
|
@@ -36,27 +57,6 @@ Build reliable trading systems: backtest on historical data, deploy live bots wi
|
|
|
36
57
|
- Trailing stop-loss
|
|
37
58
|
- Breakeven protection
|
|
38
59
|
|
|
39
|
-
## 🚀 Quick Start
|
|
40
|
-
|
|
41
|
-
### 🎯 The Fastest Way: Sidekick CLI
|
|
42
|
-
|
|
43
|
-
> **Create a production-ready trading bot in seconds:**
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
# Create project with npx (recommended)
|
|
47
|
-
npx -y @backtest-kit/sidekick my-trading-bot
|
|
48
|
-
cd my-trading-bot
|
|
49
|
-
npm start
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
### 📦 Manual Installation
|
|
53
|
-
|
|
54
|
-
> **Want to see the code?** 👉 [Demo app](https://github.com/tripolskypetr/backtest-kit/tree/master/demo) 👈
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
npm install backtest-kit ccxt ollama uuid
|
|
58
|
-
```
|
|
59
|
-
|
|
60
60
|
## 📚 Code Samples
|
|
61
61
|
|
|
62
62
|
### ⚙️ Basic Configuration
|