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

Double Dojis Exploration for Amibroker (AFL)
ami4me
almost 11 years ago
Amibroker (AFL)

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

This exploration can be run on any Market to point out towards entities which have formed ‘Doji’ candles on consecutive days , traders should watchout for breakouts on either side after this formation. Its a good tool to have in your arsenal.
The credit for this indicator goes to Mr.Boufalo .

Enjoy & Please VOTE if you like it , it encourages to share more .

Screenshots

Similar Indicators / Formulas

Butterfly Pattern
Submitted by asdaf1 about 14 years ago
Double Top and Bottom Detection
Submitted by isfandi over 13 years ago
Double Top Detection
Submitted by sougatab over 13 years ago
Pennant Chart Pattern Exploration
Submitted by kaiji about 14 years ago
Harmonic pattern detection
Submitted by Yaaad almost 14 years ago
Head & Shouders
Submitted by pvsy over 13 years ago

Indicator / Formula

Copy & Paste Friendly
// double doji exploration 
// By Boufalo Ver. 1.00   
// 
SetChartOptions(0,chartShowArrows|chartShowDates);
Plot( C, "Close", ParamColor("Color", colorBlack ), ParamStyle("Style") | GetPriceStyle() ); 

doji = (O == C);
NearDoji1 = (abs(O-C)<= ((H-L)*0.1));
NearDoji2 =NearDoji1 AND Ref(NearDoji1,-1);
NearDoji3 =NearDoji1 AND Ref(NearDoji1,-1) AND Ref(NearDoji1,-2);

  showDoji = ParamToggle("NearDoji ","SHOW|HIDE",1);
    if( showDoji )
    {
    PlotShapes( shapeDigit0*doji , colorGreen, 0, H, 45 );  
    PlotShapes( shapeDigit1*NearDoji1  , colorBlue, 0, H, 30 );    
    PlotShapes( shapeDigit2*NearDoji2 , colorOrange, 0, H, 30 );    
    PlotShapes( shapeDigit3*NearDoji3, colorBrightGreen, 0, H, 30 );  
    }


Filter = NearDoji2 OR NearDoji3 ;

AddColumn (NearDoji1 ,"1Doji ",1);
AddColumn (NearDoji2 ,"2Doji ",1);
AddColumn (NearDoji3 ,"3Doji ",1);

6 comments

1. johnnypareek

5 star btw how to give rating????

2. administrator

Click on one of the 5 stars.

3. johnnypareek

done
:)
And thanks for replying

4. administrator

No problem.

5. hoierman

This would make good exploration. Could you include “Buy/Sell” formulas along with appropriate Arrows. Thanks for you help.

Dick

6. mnasiru

Thanks a lot.

Leave Comment

Please login here to leave a comment.

Back