Class SmmaRTIndicator

All Implemented Interfaces:
ClockAware, Resettable, CacheableRTIndicator, RTIndicator

public class SmmaRTIndicator extends MmaRTIndicator
Smoothed Moving Average (SMMA) — alias for the Modified Moving Average (MMA).
  SMMA = (prevSMMA * (n - 1) + close) / n

This is algebraically identical to MMA (Wilder's smoothing) with alpha = 1/n. Provided as a separate class for API compatibility with systems that reference SMMA by name.

  • Constructor Details

    • SmmaRTIndicator

      public SmmaRTIndicator(int periods)