AMA (Adaptive Moving Average)

Modified on 2018/02/28 07:27 by Eugene — Categorized as: TASCIndicators

Syntax

public AMA(Bars bars, int period, string description)
public static AMA Series(Bars bars, int period)

Parameter Description

barsBars object
periodMoving average period

Description

Featured in Vitali Apirine's article in from April 2018 issue of Technical Analysis of Stocks & Commodities magazine, the AMA (adaptive moving average) is designed to account for the location of the close relative to the high–low range. As other indicators of the same kind it helps determine the direction of a trend. The AMA changes rapidly when prices move swiftly and moves slowly when prices go sideways.

Calculation


Current AMA = Prior AMA + SC ? (Price - Prior AMA)

Interpretation


Example

Please refer to TASC April 2018 issue, "Adaptive Moving Averages (Apirine)".