Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Volume weighted moving average for Amibroker (AFL)
jetb
almost 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 2)
Tags:
amibroker, moving average

Volume weighted moving average

Similar Indicators / Formulas

Hull Moving Average (HMA)
Submitted by kaiji about 14 years ago
Beauty
Submitted by sbtc555 almost 11 years ago
Smoothed MA (SSMA)
Submitted by kelvinhand almost 11 years ago
Trend Scalping System
Submitted by esnataraj almost 14 years ago
Buff Volume Weighted Moving Averages
Submitted by kaiji about 14 years ago
Volume wieghted moving average
Submitted by kaiji about 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Volume weighted moving average");

P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 1000, 1, 10 );
Vwma = Sum((Volume*P),periods)/Sum (Volume,periods);
Plot(Vwma,_DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );

_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back