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 MACD for Amibroker (AFL)
RAJESH D.
almost 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 3)
Tags:
oscillator, amibroker

The VMACD (Volume Moving Average Convergence/Divergence) indicator shows the relationship between two moving averages of volume. VMACD is derived by dividing one moving average by another. It is based on the point spread difference between two exponential moving averages (EMA) of a security’s volume, similar to the MACD where the closing price is used.

Screenshots

Similar Indicators / Formulas

3 Days Track
Submitted by janet0211 almost 14 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
%R ++
Submitted by reb almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("vol macd");
Diff = EMA (Volume,12) - EMA (Volume,26);

DEA = EMA (Diff,9);

Value3 = (Diff-DEA);

Plot (Diff, "Diff", 18,1);
Plot (DEA, "DEA",15,1);

Plot(Value3,"Vmacd",12,3);

_SECTION_END();

1 comments

1. Pascal SAMSON

Thank you for this AFL. Maybe you could suggest any method to use this indicator!

Leave Comment

Please login here to leave a comment.

Back