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

Controlling Height of Volume Bars for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, histogram, volume

It allows a user defined volume histogram overlay in your price pane. Many traders may find it useful by conserving real estate on the chart windows. Also, can some of our fine amibroker’s code writers insert a simple moving average over the volume, some may agree this would also be very useful.

Similar Indicators / Formulas

New V spiker Moded-1.50
Submitted by Kutubi over 12 years ago
Better Volume Indicator
Submitted by kaiji over 14 years ago
Volume Scan report
Submitted by anandnst over 11 years ago
Smoothed OBV
Submitted by magic almost 14 years ago
market thermometer
Submitted by titus over 13 years ago
Sum of Risks
Submitted by brevco about 14 years ago

Indicator / Formula

Copy & Paste Friendly
PlotVOL = ParamToggle( "plot Volume?","No| Yes",0);

VolColor = (C>O OR (C==O AND (H-C)<=(C-L)))*ParamColor ("VUpColor" ,colorGreen) +
           (C<O OR (C==O AND (H-C)>(C-L)))*ParamColor( "VDnColor" ,colorRed) ;

VolScale = Param("1/Vol. Height (TimeBar chart)(fraction of window) 5=1/5=20%",5, 2, 100, 1.0) ; // Timebars

if (PlotVOL >0)
{
	Vheight = VolScale;
	Plot(Prec(Volume ,0),"V",VolColor, styleNoTitle| styleOwnScale| styleThick|
	ParamStyle( "VStyle", styleHistogram, maskHistogram) ,Vheight );
}

1 comments

1. handasa

great jop …thanks alot

Leave Comment

Please login here to leave a comment.

Back