Syntax
public EMA2(DataSeries ds, double period, string description)
public static EMA2 Series(DataSeries ds, double period)
Parameter Description
ds |
Source Series |
period |
Indicator period
|
EMA2 always uses the Modern EMACalculation type, i.e., the exponent is calculated by 2 / ( 1 + period ).
Description
EMA2 duplicates the standard EMA calculation, except that EMA2 accepts a non-integer Period. It was created specifically to support the requirements of the
Adaptive Price Zone ChartScript from the September 2006 issue of
Stocks & Commodities magazine.
Example