Returns the Exponential Moving Average, based on the last value of the series, the new value, and the number of days in the moving average.
A calculated indicator could be defined as follows. This would be the moving average of today's close minus yesterday's close, where the name of this calculated indicator is "closeChangeMovingAverage", and the number of days in the moving average is "daysInMovingAverage". Or more simply, the 10 day exponential moving average of the close would be defined as follows, where closeEMA is a series variable.
Syntax: |
---|
value = EMA( lastValueOfSeries, movingAverageDays, newValue ) |
Parameter: |
Description: |
---|---|
lastValueOfSeries |
Previous value in the series |
movingAverageDays |
Number of days in the moving average |
newValue |
New data value to include in EMA series. |
Example: |
---|
' Example Name References |
Returns: |
Current EMA value after the data value included. |
Links: |
---|
See Also: |
Edit Time: 9/18/2020 12:16:53 PM |
Topic ID#: 273 |