- Window bin size sets the granularity of the sliding window
- offset_delta determines how many bins to look back
- Together they define the rolling window: offset_delta × window_bin_size
- Example: WEEK + offset_delta=4 creates a 4-week rolling window
- Finer granularity (HOUR): More responsive to recent changes, higher sensitivity
- Coarser granularity (MONTH): More stable patterns, reduced noise
- Medium granularity (DAY/WEEK): Balanced responsiveness and stability
- HOUR: High-frequency models with rapid data changes
- DAY: Standard operational monitoring for most models
- WEEK: Weekly business cycles, batch processing patterns
- MONTH: Long-term trends, seasonal patterns, strategic monitoring