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

Daily Volume Indicator- DVI for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker

Check the Market strength with DVI

Screenshots

Similar Indicators / Formulas

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

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN(" DVI ");
function DailyVolumeIndicator()
{
  midpoint = ( High + Low ) / 2;
  dv = Volume * (( Close - midpoint ) / midpoint);
   return Cum( dv );
}
Period= Param("period",21,1,100,1);
r1=DailyVolumeIndicator();
r2=TEMA( 2*TEMA(r1,int(Period/2))- TEMA(r1,Period),int(sqrt(Period)));
Plot( r2, _DEFAULT_NAME(), IIf( r2> Ref(r2,-1) , ParamColor("Up Color",
colorBlue ), ParamColor("Down Color", colorRed ) ));
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back