fix(docs): correct warmup values in cycles/channels .md files

Cycles:
- ebsw: warmup 1 bar → Math.Max(hpLength, ssfLength) + 3 (default 43)
- homod: warmup 1 bar → maxPeriod * 2 (default 100)

Channels:
- apchannel: warmup 1 bar → ⌈3/alpha⌉ (default 15); params None → alpha; outputs Single → Multiple
- jbands: warmup 1 bar → ⌈20 + 80 × period^0.36⌉
- uchannel: warmup 1 bar → Math.Max(strPeriod, centerPeriod)"
This commit is contained in:
Miha Kralj
2026-03-10 18:37:19 -07:00
parent 031f1b5fe6
commit 8906c62dcf
5 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -7,14 +7,14 @@
| **Parameters** | `hpLength` (default 40), `ssfLength` (default 10) |
| **Outputs** | Single series (Ebsw) |
| **Output range** | Varies (see docs) |
| **Warmup** | 1 bar |
| **Warmup** | `Math.Max(hpLength, ssfLength) + 3` bars (default 43) |
### TL;DR
- EBSW is a refined cycle oscillator that combines a high-pass filter (trend removal), a Super-Smoother filter (noise removal), and Automatic Gain Co...
- Parameterized by `hplength` (default 40), `ssflength` (default 10).
- Output range: Varies (see docs).
- Requires 1 bar of warmup before first valid output (IsHot = true).
- Requires `Math.Max(hpLength, ssfLength) + 3` bars (default 43) of warmup before first valid output (IsHot = true).
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
EBSW is a refined cycle oscillator that combines a high-pass filter (trend removal), a Super-Smoother filter (noise removal), and Automatic Gain Control to produce a normalized $[-1, +1]$ output representing the current position within the dominant market cycle. Developed by John Ehlers as an improvement over the original Hilbert Transform SineWave, it provides cleaner turning point detection without requiring complex phase extraction mathematics.