Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adaptive Moving Average (AMA)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Adaptive Moving Average (AMA)

    This moving average type is one of the few we're missing. I thought I'd post the formula in case anyone felt like giving it a shot. I would but its slightly beyond my ability at the moment.

    The Description . . .
    This moving average moves slowly when prices are moving sideways and moves swiftly when prices move swiftly. The basic rule is to buy when the AMA turns up, and sell when the AMA turns down.

    The Preferences . . .
    • AMA Period - Period used to calculate the Direction as seen in the formula above. (10 is recommended)
    • Fast SC Period - Period used to calculate the fast smoothing constant (2 is recommended)
    • Slow SC Period - Period used to calculate the slow smoothing constant (30 is recommended)
    The Formula . . .
    Direction = Price - price(n)
    ; where n = AMA Period
    Volatility = Sum(abs(price - price[1], n)
    Effeciency Ratio (ER) = Direction / Volatility
    Fast Smoothing Constant (FastC) = 2/(p + 1)
    ; where p = FSC Period
    Slow Smoothing Constant (SlowC) = 2/(q + 1)
    ; where q = FSC Period
    Scaled Smoothing Constant (SSC) = ER(FastC - SlowC) + SlowC
    c = SSC*SSC
    AMA = AMA[1] + c(price - AMA[1])

    #2
    should 'q' equal the SSC period?...since 'p' already equals the FSC period

    Comment


      #3
      I'm not sure, I just copied the formula from a website I found. You may be right.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      569 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      330 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      548 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      548 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X