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 displayed in candle shape for Amibroker (AFL)

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

Here is an indicator that displays volume in candle shape. The standard way of displaying volume in histogram form making the bars too narrow. The new form seems more user friendly, as least to me :).

The screen shot looks like below

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN( "Volume" );
ShowVolume  = ParamToggle( "Show Volume","No|Yes" , 1 );
if ( ShowVolume )
{
	VolColor = ( C >= O)*ParamColor ("UpColor" ,colorGreen) +
   		        ( C < O)*ParamColor( "DnColor" ,colorRed) ;
 
	PlotOHLC(0, V, 0, V, "V", VolColor , styleOwnScale|styleCandle,  20) ;
}
_SECTION_END();

1 comments

1. ARIES77

Hello sir, what candlestick you used it (hollow candle) ? may i used it??? thanks

Leave Comment

Please login here to leave a comment.

Back