Skip to main content

Volume MACD for Amibroker (AFL)

RAJESH D. almost 16 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

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

almost 16 years ago

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

Leave Comment

Please login here to leave a comment.