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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Doji Exploration for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("DOJI");
Plot(C,"",colorLightGrey,styleCandle);
r=CdDoji( threshold = 0.05 );
PlotShapes(r*shapeSmallCircle,colorBlue,Layer=0,yposition=H,Offset=12);
for(i=0;i<BarCount-1;i++)
{
if(r[i]==True)PlotText("Doji", i, H[i], colorBlue, bkcolor = colorDefault);
}
Filter = 1;
AddColumn(C, "Close", 1.2);
AddColumn( r, "CANDLE", 1.4 , IIf( r, colorBlue, colorWhite ) );
_SECTION_END();