The Volume Weighted Moving Average (VWMA) study calculates the average weighted price by volume over a period of N bars.
pv = close * volume VWMA = SMA(pv, length) / SMA(volume, length)
Figure 9.30: Volume Weighted Moving Average