backtest-kit 3.0.15 → 3.0.17

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/types.d.ts +1986 -2012
package/README.md CHANGED
@@ -320,7 +320,7 @@ Order book fetching uses the same temporal alignment as candles, but with a conf
320
320
 
321
321
  #### Order Book Timestamp Convention:
322
322
 
323
- The `from`/`to` range is a **lookback window**. The adapter selects the closest snapshot to `to` in backtest mode, or returns real-time data in live mode. Unlike candles, most exchanges (e.g. Binance `GET /api/v3/depth`) only expose the **current** order book with no historical query support — for backtest you must provide your own snapshot storage.
323
+ Unlike candles, most exchanges (e.g. Binance `GET /api/v3/depth`) only expose the **current** order book with no historical query support — for backtest you must provide your own snapshot storage.
324
324
 
325
325
  **Key principles:**
326
326
  - Time range is aligned down to `CC_ORDER_BOOK_TIME_OFFSET_MINUTES` boundary
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backtest-kit",
3
- "version": "3.0.15",
3
+ "version": "3.0.17",
4
4
  "description": "A TypeScript library for trading system backtest",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",