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 ....
What is this (It is candle counting) for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | _SECTION_BEGIN ( "Price" ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Color" , colorDefault ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); _SECTION_END (); //Use parameter and make it StyleOwnScale. //Visit Market<No space>logy.com for strategy and unique AFL codes. for ( i = 0; i < BarCount ; i++ ) { O [i] = C [i] = i; H [i] = i + 5; L [i] = i - 5; if ( i % 2 == 0 ) { PlotText ( NumToStr ( i, 1.0, False ), i, L [i]-2, colorGold );} else { PlotText ( NumToStr ( i, 1.0, False ), i, H [i]+.5, colorGreen );} } Plot ( C , "" , colorBlue , styleCandle ); PlotShapes ( C , colorRed , 0, C , -10 ); Title = "Hollow = " + NumToStr ( shapeHollowCircle - shapeCircle , 0, 0 ) + "\n" + "Small = " + NumToStr ( shapeSmallCircle - shapeCircle , 0, 0 ); |