Simple Moving Average of the specified period for the current bar
| Visual Basic |
Public Function MovingAverage ( _ period As Integer _ ) As RealCodeIndicatorCalculation
- period (Int32)
- moving average period (in bars)
Returns a RealCodeIndicatorCalculation. This allows you to call other functions like AVG,XAVG,STOC,RSI
plot the 5 bar exponential average of the 30 bar moving average of price
CopyVB.NET
plot = price.MovingAverage(30).XAVG(5)