From f3ad0940c398c5df3496ce981aa859f81aeadfaa Mon Sep 17 00:00:00 2001 From: kingchenc Date: Sat, 23 May 2026 11:04:15 +0200 Subject: [PATCH] docs(wiki): correct Node warmupPeriod() coverage note (R3, R8) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Quickstart-Node API-surface table claimed `warmupPeriod()` was "not exposed on every multi-output class". After the B-series fixes in `todo-detailed.md` and the R3/R8 pass on this branch, every Node indicator class — single- and multi-output, scalar- and candle-input — exposes `warmupPeriod()`. Updated the note accordingly. --- docs/wiki/Quickstart-Node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/Quickstart-Node.md b/docs/wiki/Quickstart-Node.md index 94fbb110..a9ee0543 100644 --- a/docs/wiki/Quickstart-Node.md +++ b/docs/wiki/Quickstart-Node.md @@ -135,7 +135,7 @@ The complete TypeScript definitions live at | `batch(...)` | Single-output: flat `Array` with `NaN` warmup.
Multi-output: flat interleaved `Array`. | | `reset()` | Returns to a freshly-constructed state. | | `isReady()` | `true` once the first value has been emitted. | -| `warmupPeriod()` | Present on single-output indicators (SMA, EMA, WMA, RSI, ...). Not exposed on every multi-output class — check `index.d.ts`. | +| `warmupPeriod()` | Present on every indicator class (single- and multi-output, scalar- and candle-input) since `0.1.5`. | A complete reference run lives in `bindings/node/__tests__/smoke.test.js`: