mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-15 17:18:05 +00:00
doc headers
This commit is contained in:
@@ -1,4 +1,21 @@
|
||||
# DOSC: Derivative Oscillator
|
||||
# DOSC: Derivative Oscillator
|
||||
|
||||
| Property | Value |
|
||||
| ---------------- | -------------------------------- |
|
||||
| **Category** | Oscillator |
|
||||
| **Inputs** | Source (close) |
|
||||
| **Parameters** | `rsiPeriod` (default 14), `ema1Period` (default 5), `ema2Period` (default 3), `sigPeriod` (default 9) |
|
||||
| **Outputs** | Single series (Dosc) |
|
||||
| **Output range** | Varies (see docs) |
|
||||
| **Warmup** | `rsiPeriod + sigPeriod` bars |
|
||||
|
||||
### TL;DR
|
||||
|
||||
- The Derivative Oscillator applies a four-stage signal processing pipeline to extract momentum inflection points: RSI via Wilder's smoothing, double...
|
||||
- Parameterized by `rsiperiod` (default 14), `ema1period` (default 5), `ema2period` (default 3), `sigperiod` (default 9).
|
||||
- Output range: Varies (see docs).
|
||||
- Requires `rsiPeriod + sigPeriod` bars of warmup before first valid output (IsHot = true).
|
||||
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
|
||||
|
||||
The Derivative Oscillator applies a four-stage signal processing pipeline to extract momentum inflection points: RSI via Wilder's smoothing, double EMA smoothing of the RSI, an SMA signal line of the double-smoothed result, and finally the difference between the smoothed RSI and its signal. The histogram output crosses zero at momentum turning points, offering earlier signals than raw RSI by isolating the rate of change of the smoothed momentum rather than the momentum level itself.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user