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 - compared with Moving Avg (100%) for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
amibroker, exploration, volume

This is principle only another view of the volume. It shows you the difference from the current volume to the moving Volume in percent. I like it, because it is easier to analyze. you dont need to compare the volume with the moving, which has everyday another value. In this formula you see, for example, that sometimes the volume is 300% higher than the AVG. This makes it also easier to use in the exploration.

Set the scale to percent and automatic

By Thomas Zmuck – thomas.zm [at] aon.at

Similar Indicators / Formulas

Volume Oscillator
Submitted by kaiji about 14 years ago
eod explorer
Submitted by nishant551988 almost 12 years ago
Three Day Balance Points
Submitted by nvkha almost 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
miftha indicator
Submitted by coolpace almost 14 years ago
Volume Spike Exploration
Submitted by ngocleasing over 13 years ago

Indicator / Formula

Copy & Paste Friendly
//written by Thomas Zmuck
//Date: 15-07-02
//thomas.zm@aon.at

pds = 10;
V1 = V/MA(V,10); V2 = V/MA(V,20);
V3 = V/MA(V,50);

barcolor = IIf(V<MA(V,pds),4,6);
/* Colourized price bars drawn here */
Plot(100*Volume/MA(V,pds),"    V/ma(10)",barcolor,2+4);

Plot(100,"    AVG(10)",1,1);

unsure = V1<1 AND V2<1 AND V3<1;
sure   = V1>1 AND V2>1 AND V3>1;

Filter = unsure;
AddColumn(100*V/MA(V,10),"V/ma(V,10)",1.0);
AddColumn(100*V/MA(V,20),"V/ma(V,20)",1.0);
AddColumn(100*V/MA(V,50),"V/ma(V,50)",1.0);
AddColumn(ROC(C,1),"%today");

1 comments

1. randyguisihan

Hi.. Kaiji
Is there a way / guide on how to use this. thanks

Leave Comment

Please login here to leave a comment.

Back