Double Doji Scanner

Coming Soon

Double Doji Scanner

Unread postby Nidhish » Fri Mar 20, 2015 6:23 pm

// double doji Nidhish Scanner
// 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);

If you like this post please click on LIKE button and share it to world.
Like Us :

Nidhish
 
Posts: 23
Joined: Thu Jan 03, 2013 3:48 pm

Return to Trading Strategies



Who is online

Users browsing this forum: No registered users and 39 guests

Shop at amazon and get latest offers
cron
============================================= =============================================