Simple Moving Average of the specified period for the current bar

Visual Basic |
Public Function AVG ( _ period As Integer, _ barStyle As RealCodeIndicator..::.BarValue _ ) As RealCodeIndicatorCalculation

- period (Int32)
- >moving average period (in bars)
- barStyle (RealCodeIndicator..::.BarValue)
- Which bar data point to use: Open, High, Low, Close

Returns a RealCodeIndicatorCalculation variable, can be used to chain more function calls.

This is the same as calling MovingAverage(period,barStyle)
Examples

plot the 30 bar moving average of the lows for the current symbol
CopyVB.NET

plot = price.AVG(30,RealCodeIndicator.BarValue.Low).Value
