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 Reversal Pattern for Amibroker (AFL)
chrjtm
almost 14 years ago
Amibroker (AFL)

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

This indicator is used to explorer candlestick pattern for trading

Similar Indicators / Formulas

Double Top Detection
Submitted by sougatab over 13 years ago
Simple Candlestick Pattern Exploration
Submitted by kaiji about 14 years ago
Head & Shouders
Submitted by pvsy over 13 years ago
Double Dojis Exploration
Submitted by ami4me almost 11 years ago
Double Top and Bottom Detection
Submitted by isfandi over 13 years ago
Price Projection by Gann ( Murray Math lines)
Submitted by kv_maligi almost 12 years ago

Indicator / Formula

Copy & Paste Friendly
MATHOLD=Ref(Close,-4)>=Ref(Open,-4)*1.01 AND Ref(Low,-3)>Ref(High,-4) AND Ref(High,-1)<Ref(High,-3) AND Ref(Low,-1)<Ref(Low,-3) AND Ref(Close,-3)<Ref(Open,-3) AND LLV(Ref(L,-1),3) > Ref(Low,-4) AND Open<Ref(Open,-1) AND Close>HHV(Ref(H,-1),3) AND Close>=Open*1.01;
SDBSDWTLN=HHV(High,2)==HHV(High,8) AND Ref(Close,-2)>=Ref(Open,-2)*1.01 AND Ref(Low,-1)>Ref(High,-2) AND Ref(Close,-1)>=Ref(Open,-1)*1.01 AND Low>Ref(High,-2) AND Open<=Ref(Open,-1)*1.005 AND Close>=Open*1.01;
TINSDUP=Ref(Close,-2)<=Ref(Open,-2)*.99 AND Ref(High,-1)<=Ref(Open,-2) AND Ref(Low,-1)>=Ref(Close,-2) AND Close>Ref(Open,-2);
TOUTSUP=Ref(Open,-1)<Ref(Low,-2) AND Ref(Close,-1)>Ref(High,-2) AND Ref(Close,-1)>=Ref(Open,-1)*1.01 AND Close>Ref(High,-1) AND Close>Open;
ABBABY=Ref(Close,-2)<=Ref(Open,-2)*.99 AND Ref(High,-1)<Ref(Low,-2) AND Low>Ref(High,-1) AND Close>=Open*1.01;
CONBABYSW=Ref(Close,-3)<=Ref(Open,-3)*.99 AND Ref(Close,-2)<=Ref(Open,-2)*.99 AND Ref(Open,-1)<Ref(Close,-2) AND Ref(High,-1)>Ref(Close,-2) AND Open>Ref(Close,-2) AND Close<=Ref(Close,-1) AND LLV(Low,2)==LLV(Low,8);
KICKBULL=Ref(Close,-1)<=Ref(Open,-1)*.99 AND Low>=Ref(High,-1) AND Close>=Open*1.01;
MRNSTAR=Ref(Close,-2)<=Ref(Open,-2)*.99 AND Ref(Open,-1)<=Ref(Close,-2) AND Ref(Close,-1)<=Ref(Close,-2) AND Close>Ref(Close,-2) AND Close>=Open*1.01;
PRCLINE=Ref(Close,-1)<=Ref(Open,-1)*.99 AND Open<Ref(Low,-1) AND Close>=(Close+((Open-Close)*0.5));
TWHITESOLD=LLV(Low,8)==Ref(Low,-2) AND Ref(Open,-1)<Ref(Close,-2) AND Open<Ref(Close,-1) AND Ref(Close,-1)>Ref(Close,-2) AND Close>Ref(Close,-1) AND Ref(Close,-2)>=Ref(Open,-2)*1.01 AND Ref(Close,-1)>=Ref(Open,-1)*1.01 AND Close>=Open*1.01;

c_Status =	
WriteIf(MATHOLD, "Mat hold",
WriteIf(SDBSDWTLN, "Side by Side White Line",
WriteIf(TINSDUP, "Three Inside Up", 
WriteIf(TOUTSUP, "Three Outside Up",
WriteIf(ABBABY, "Abandoned Baby",
WriteIf(CONBABYSW, "CONCEALING BABY SWALLOW",
WriteIf(KICKBULL, "Bullish Kicking",
WriteIf(MRNSTAR, "Morning Star",
WriteIf(PRCLINE, "Piercing Line",
WriteIf(TWHITESOLD, "Three White Soldiers",

"Zilch" ))))))))));
Filter = 1;
AddTextColumn(C_Status, "Candle Pattern", 5.6, colorWhite, IIf(MATHOLD OR SDBSDWTLN OR TINSDUP OR TOUTSUP OR CONBABYSW OR ABBABY OR KICKBULL OR MRNSTAR OR PRCLINE OR TWHITESOLD, colorGreen, colorLightGrey));

5 comments

1. kv_maligi

Not working dear.

Can you modify this

Thanks
Viswanath

2. Kabir

it is exploration

3. jeevansdcomp

hey dear this code is not working

4. gelgel128

hey dear this code is not working

or tell us how it work

5. owied

it is good exploration

Leave Comment

Please login here to leave a comment.

Back