Moving Average - Simple (SMA)
<< Click to Display Table of Contents >> Moving Average - Simple (SMA) |
The Simple Moving Average is calculated by summing the closing prices of the security for a period of time and then dividing this total by the number of time periods. Sometimes called an arithmetic moving average, the SMA is basically the average stock price over time.
SMA(int period)
SMA(ISeries<double> input, int period)
Returns default value
SMA(int period)[int barsAgo]
SMA(ISeries<double> input, int period)[int barsAgo]
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.
input |
Indicator source data (?) |
period |
Number of bars used in the calculation |
// Prints the current value of a 20 period SMA using default price type |
You can view this indicator method source code by selecting the menu New > NinjaScript Editor > Indicators within the NinjaTrader Control Center window.