VWMA - Volume Weighted Moving Average
Last updated
VWMA is a non-cumulated smoothed average that is weighted based on the various volumes for the periods.
VWMA(int period)
VWMA(IDataSeries inSeries, int period)
VWMA(int period)[int barsAgo]
VWMA(IDataSeries inSeries, int period)[int barsAgo]double
When using this method with an index (e.g. VWMA(14)[int barsAgo] ), the value of the indicator will be issued for the referenced bar.
inSeries Input data series for the indicator
period Number of bars included in the calculations

Last updated
//Output for the VWMA
Print("The current VWMA value is " + VWMA(14)[0]);