MOV Function

Modified on 2012/08/14 09:34 by Chad Lowe (CTS) — Categorized as: Uncategorized

MOV( <value>, <periods>, <MAType> )

Computes the moving average of the value over the specified number of periods using the specified moving average type.

Function Parameters
ParameterDescription
<value>The value to compute the moving average of.
<periods>The number of periods to compute the moving average over.
<MAType>The type of moving average to compute.

MAType can be specified as follows:

MAType
ParameterDescription
MAType.SMASimple moving average.
MAType.SMMASmoothed moving average.
MAType.EMAExponential moving average.
MAType.LWMALinear weighted moving average.
MAType.LSMALeast square moving average.
MAType.HMAHull moving average.
MAType.WILDERMAWells Wilder simple moving average.

Aliases

The following are aliases for the MOV function:

SMA( <value>, <periods>)

EMA( <value>, <periods>)

SMMA( <value>, <periods>)

LWMA( <value>, <periods>)

LSMA( <value>, <periods>)

HMA( <value>, <periods>)

WILDERMA( <value>, <periods>)



Back to the Scripting Function Reference