backtest-kit 1.5.25 โ 1.5.27
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 +3 -3
- package/build/index.cjs +1789 -1055
- package/build/index.mjs +1788 -1057
- package/package.json +1 -1
- package/types.d.ts +4549 -3961
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Build reliable trading systems: backtest on historical data, deploy live bots wi
|
|
|
24
24
|
- ๐ **Reports & Metrics**: Auto Markdown reports with PNL, Sharpe Ratio, win rate, and more.
|
|
25
25
|
- ๐ก๏ธ **Risk Management**: Custom rules for position limits, time windows, and multi-strategy coordination.
|
|
26
26
|
- ๐ **Pluggable**: Custom data sources (CCXT), persistence (file/Redis), and sizing calculators.
|
|
27
|
-
- ๐งช **Tested**:
|
|
27
|
+
- ๐งช **Tested**: 300+ unit/integration tests for validation, recovery, and events.
|
|
28
28
|
- ๐ **Self hosted**: Zero dependency on third-party node_modules or platforms; run entirely in your own environment.
|
|
29
29
|
|
|
30
30
|
## ๐ Supported Order Types
|
|
@@ -223,7 +223,7 @@ for await (const event of Backtest.run('BTCUSDT', config)) {
|
|
|
223
223
|
}
|
|
224
224
|
```
|
|
225
225
|
|
|
226
|
-
##
|
|
226
|
+
## โ๏ธ Think of it as...
|
|
227
227
|
|
|
228
228
|
**Open-source QuantConnect without the vendor lock-in**
|
|
229
229
|
|
|
@@ -242,7 +242,7 @@ Unlike cloud-based platforms, backtest-kit runs entirely in your environment. Yo
|
|
|
242
242
|
|
|
243
243
|
## โ
Tested & Reliable
|
|
244
244
|
|
|
245
|
-
|
|
245
|
+
300+ tests cover validation, recovery, reports, and events.
|
|
246
246
|
|
|
247
247
|
## ๐ค Contribute
|
|
248
248
|
|