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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Volume weighted moving average for 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 over 15 years ago
Smoothed MA (SSMA)
Submitted
by kelvinhand almost 12 years ago
Trend Scalping System
Submitted
by esnataraj almost 15 years ago
Buff Volume Weighted Moving Averages
Submitted
by kaiji about 15 years ago
Volume wieghted moving average
Submitted
by kaiji about 15 years ago
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 | _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