-
Notifications
You must be signed in to change notification settings - Fork 0
SMA
Syed Ibrahim Omer edited this page Apr 13, 2026
·
1 revision
SMA is the arithmetic mean of the last (N) closing prices.
sma
[ SMA_t = \frac{1}{N}\sum_{i=0}^{N-1} close_{t-i} ]
- Config key:
sma_window - Value: integer window size, keyed by period + timeframe
- Larger windows smooth more but react slower to changes.
- The first (N-1) rows are typically null because the rolling window is not yet full.
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