backtest-kit 1.12.1 → 1.13.1

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.
Files changed (5) hide show
  1. package/README.md +21 -21
  2. package/build/index.cjs +3643 -1299
  3. package/build/index.mjs +3631 -1300
  4. package/package.json +1 -1
  5. package/types.d.ts +3196 -1069
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