Simple Moving Average of the specified period for the current bar
Declaration Syntax
Visual Basic |
Public Function AVG ( _ period As Integer, _ barStyle As RealCodeIndicator..::.BarValue _ ) As RealCodeIndicatorCalculation
Parameters
- period (Int32)
- >moving average period (in bars)
- barStyle (RealCodeIndicator..::.BarValue)
- Which bar data point to use: Open, High, Low, Close
Return Value
Returns a RealCodeIndicatorCalculation variable, can be used to chain more function calls.
Remarks
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
See Also