-
Notifications
You must be signed in to change notification settings - Fork 0
Stochastic
Syed Ibrahim Omer edited this page Apr 13, 2026
·
1 revision
The stochastic oscillator compares the current close to the recent high/low range.
-
K(uppercase in current implementation) -
D(uppercase in current implementation; 3-period SMA ofK)
For window (N):
[ K_t = 100 \cdot \frac{close_t - min(low, N)_t}{max(high, N)_t - min(low, N)_t} ]
[ D_t = SMA(K, 3)_t ]
- Config key:
stochastic_window
Related pages:
- Getting Started
- CLI Reference
- Configuration & Templates
- Indicators (Overview)
- Output Formats
- Advanced Usage
- Troubleshooting
- Pipeline
- CLI Parsing
- Data Source (Yahoo Finance)
- Source Data Deep Dive
- Schema Normalization
- Data Shape Invariants
- Output Writing
- Write Output Deep Dive
- Config Resolution
- Polars Engine
- Source Modules
- Testing
- Performance
- Indicators Engine
- Reproducibility