backtest-kit 9.8.2 → 9.8.3
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 +7 -2
- package/build/index.cjs +474 -154
- package/build/index.mjs +471 -155
- package/package.json +1 -1
- package/types.d.ts +429 -149
package/README.md
CHANGED
|
@@ -1752,7 +1752,7 @@ The **backtest-monorepo-parallel** repository is a TypeScript monorepo template
|
|
|
1752
1752
|
#### Key Features
|
|
1753
1753
|
- ⚡ **~6 300× Real-Time Aggregate**: 9 symbols × ~703× per-symbol replay speed, ~103 events/sec in the hot `listenActivePing → commitAverageBuy` loop on a commodity i5-13420H laptop
|
|
1754
1754
|
- 🧵 **Single-Process Concurrency**: All 9 `Backtest.background(...)` contexts share one event loop, one Mongo pool, one Redis pool — no IPC, no fork overhead
|
|
1755
|
-
-
|
|
1755
|
+
- 💉 **DI Surface**: Workspace services typed via rolled-up `types.d.ts` and reachable from strategy files at evaluation time
|
|
1756
1756
|
- 🗂️ **Mode A / Mode B**: `--entry` flag toggles between parallel runner (`CC_SYMBOL_LIST` fan-out) and single-strategy CLI mode
|
|
1757
1757
|
- 🧩 **Linear Scaling Recipe**: Adding a service = +1 file, +1 symbol, +1 provider, +1 ioc entry — no churn under `./content/`
|
|
1758
1758
|
|
|
@@ -1830,7 +1830,6 @@ Perfect for traders working with emerging or regional markets absent from Tradin
|
|
|
1830
1830
|
git clone https://github.com/backtest-kit/uzse-backtest-app.git
|
|
1831
1831
|
```
|
|
1832
1832
|
|
|
1833
|
-
|
|
1834
1833
|
## 🧩 Strategy Examples
|
|
1835
1834
|
|
|
1836
1835
|
#### 🧠 Neural Network Strategy (Oct 2021)
|
|
@@ -1875,6 +1874,12 @@ Same mechanics as SHORT version but LONG-biased with 3% profit target. Deployed
|
|
|
1875
1874
|
|
|
1876
1875
|
Python-based (WASI) strategy that uses EMA(9) and EMA(21) crossover signals executed via WebAssembly. Trades trigger when fast EMA crosses slow EMA, confirmed by 4h range midpoint.
|
|
1877
1876
|
|
|
1877
|
+
## 👨💼 Commercial Support
|
|
1878
|
+
|
|
1879
|
+
> **[TheOneTrade](https://theonetrade.github.io)** 💼
|
|
1880
|
+
|
|
1881
|
+
**TheOneTrade** is the commercial vendor behind backtest-kit, providing paid support, custom strategy development, managed accounts, team training, and enterprise licensing. Contact for SLAs, private features, or quant team engagements that fall outside the MIT-licensed open-source scope.
|
|
1882
|
+
|
|
1878
1883
|
## 🤖 Are you a robot?
|
|
1879
1884
|
|
|
1880
1885
|
**For language models**: Read extended description in [./LLMs.md](./LLMs.md)
|