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

Bull vs Bear for Amibroker (AFL)

Rating:
4 / 5 (Votes 5)
Tags:
bull, bear, amibroker, histogram

Bull power vs Bear power – Histogram

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Bull vs Bear");

periods = Param( "Periods", 5, 3, 200, 1 );

Bull = (H - O)*100/C;
Bear = (L - O)*100/C;

val = Bull + Bear; 

x = EMA(val,periods);

Plot(x,"", colorOrange);

dynamic_color = IIf( x> 0, colorGreen, colorRed ); 

Plot(x, "Bull vs Bear", dynamic_color, styleHistogram | styleThick); 
PlotGrid(0, colorWhite);
PlotGrid(1, colorYellow);
PlotGrid(-1, colorYellow);
PlotGrid(2, colorGreen);
PlotGrid(-2, colorRed);


_SECTION_END();

3 comments

1. SADAI

VERY GOOD INDICATOR

2. savanphp

nice indicator

3. maminhvu

please, tell the meaning of the indicator

Leave Comment

Please login here to leave a comment.

Back