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

Bullish & Bearish Candlesick Patterns for Amibroker (AFL)
expert
over 13 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
amibroker, candlestick, pattern

This afl shows bullish & bearish candlestick patterns. It is a nice afl for trading!

Screenshots

Similar Indicators / Formulas

Candlestick Analysis
Submitted by kaiji about 14 years ago
Candle Identification
Submitted by ashokchawla58 almost 14 years ago
Candlestick Identification Function Include
Submitted by kaiji about 14 years ago
Candlestick Commentary Modified
Submitted by indrajit_16 almost 14 years ago
Bullish Reversal Pattern
Submitted by chrjtm almost 14 years ago
ELLIOT WAVE WITH SAR
Submitted by ajit_2682 about 12 years ago

Indicator / Formula

Copy & Paste Friendly
Plot(C,"",colorLightGrey,styleCandle);

r=CdDoji( threshold = 0.05 );
s=CdHammer( rangefactor= 1.1 );
t=CdBearishEngulfing( bodyfactor = 0.4, rangefactor = 0.5);
u=CdBullishEngulfing( bodyfactor = 0.4, rangefactor = 0.5);
PlotShapes(r*shapeSmallCircle,colorRed,Layer=0,yposition=H,Offset=12); 
PlotShapes(s*shapeCircle,colorYellow,Layer=0,yposition=H,Offset=12); 
PlotShapes(t*shapeHollowSmallCircle,colorLime,Layer=0,yposition=H,Offset=12); 
PlotShapes(u*shapeHollowCircle,colorBlue,Layer=0,yposition=H,Offset=12); 

for(i=0;i<BarCount-1;i++) 
{
	if(r[i]==True)PlotText("Doji", i, H[i], colorRed, bkcolor = colorDefault); 
	if(s[i]==True)PlotText("Hammer", i, H[i], colorYellow, bkcolor = colorDefault); 
	if(t[i]==True)PlotText("BearishEngulf", i, H[i], colorLime, bkcolor = colorDefault); 
	if(u[i]==True)PlotText("BullishEngulf", i, H[i], colorBlue, bkcolor = colorDefault); 
}

3 comments

1. Muralikrishna

fine thank u

2. shariful

nice work

3. mnasiru

Thanks for sharing

Leave Comment

Please login here to leave a comment.

Back