backtest-kit 2.1.1 → 2.1.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 +1 -1
- package/build/index.cjs +2108 -1423
- package/build/index.mjs +2080 -1397
- package/package.json +1 -1
- package/types.d.ts +209 -4
package/README.md
CHANGED
|
@@ -206,7 +206,7 @@ Backtest Kit is **not a data-processing library** - it is a **time execution eng
|
|
|
206
206
|
### 🔍 How getCandles Works
|
|
207
207
|
|
|
208
208
|
backtest-kit uses Node.js `AsyncLocalStorage` to automatically provide
|
|
209
|
-
temporal time context to your strategies.
|
|
209
|
+
temporal time context to your strategies. Exclusive (aka `[startTime, endTime)`) candle limit being used
|
|
210
210
|
|
|
211
211
|
### 💭 What this means:
|
|
212
212
|
- `getCandles()` always returns data UP TO the current backtest timestamp using `async_hooks`
|