The VolumeAdjustedAverage is a technical indicator in ProBuilder language that calculates a moving average of prices, adjusted by the volume of trades. This indicator provides a more weighted average where higher volume trading days have a greater influence on the average price, potentially offering a more accurate reflection of market sentiment.
VolumeAdjustedAverage[period](price)
myVAMA = VolumeAdjustedAverage[30](close)
This example calculates the Volume Adjusted Moving Average (VAMA) of the closing prices over the last 30 periods.
Moving averages are fundamental components of technical analysis, used to smooth out price data and identify trends. The Volume Adjusted Moving Average differs from simple moving averages by incorporating volume, which means it accounts for both price changes and the magnitude of these changes. This can be particularly useful in identifying the strength behind price movements. When the VAMA rises, it suggests an upward trend supported by volume, and conversely, a falling VAMA can indicate a downward trend.
Understanding the interaction between volume and price can provide deeper insights into market dynamics, making the Volume Adjusted Moving Average a valuable tool for traders analyzing stocks, commodities, or any traded asset.