backtest-kit 1.10.4 → 1.11.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 +2 -2
- package/build/index.cjs +2942 -573
- package/build/index.mjs +2935 -589
- package/package.json +2 -2
- package/types.d.ts +999 -185
package/README.md
CHANGED
|
@@ -230,11 +230,11 @@ for await (const event of Backtest.run('BTCUSDT', config)) {
|
|
|
230
230
|
|
|
231
231
|
## ⚔️ Think of it as...
|
|
232
232
|
|
|
233
|
-
**Open-source QuantConnect without the vendor lock-in**
|
|
233
|
+
**Open-source QuantConnect/MetaTrader without the vendor lock-in**
|
|
234
234
|
|
|
235
235
|
Unlike cloud-based platforms, backtest-kit runs entirely in your environment. You own the entire stack from data ingestion to live execution. In addition to Ollama, you can use [neural-trader](https://www.npmjs.com/package/neural-trader) in `getSignal` function or any other third party library
|
|
236
236
|
|
|
237
|
-
- No C
|
|
237
|
+
- No C#/C++ required - pure TypeScript/JavaScript
|
|
238
238
|
- Self-hosted - your code, your data, your infrastructure
|
|
239
239
|
- No platform fees or hidden costs
|
|
240
240
|
- Full control over execution and data sources
|