mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 05:48:06 +00:00
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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user