Moving Average - Exponential (EMA)
Moving Average - Exponential (EMA)
Description
The exponential moving average is but one type of a moving average. In a simple moving average, all price data has an equal weight in the computation of the average with the oldest value removed as each new value is added. In the exponential moving average equation the most recent market action is assigned greater importance as the average is calculated. The oldest pricing data in the exponential moving average is however never removed.
Syntax
EMA(int period)
EMA(ISeries\<double\> input, int period)
Returns default value
EMA(int period)[int barsAgo]
EMA(ISeries\<double\> input, int period)[int barsAgo]
Return Value
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.
Parameters
Examples
Source Code
You can view this indicator method source code by selecting the menu New > NinjaScript Editor > Indicators within the NinjaTrader Control Center window.

