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 ....
BULLISH SCAN for Amibroker (AFL)
Copy & Paste Friendly
Back
_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", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
N = (O+H+C);
b = 0.05*C;
A=MA(C,50);
B=MA(C,200);
g = Volume>100000;
entry = C;
trgt1 = b+C;
stop = L;
H=Close>Ref(HHV(High,8),-1);
Buy = H AND g;
Filter = Buy;
AddColumn(entry," BUY ",2.2,colorBlack,colorYellow);
AddColumn(trgt1," TARGET ",2.2,colorBlack,colorPink);
AddColumn(stop,"STOP LOSS",2.2,colorBlack,colorRed);
AddColumn(V," VOLUME ");
AddColumn(RSI(14)," RSI(14) ",2.2,colorBlack,colorSkyblue);
AddColumn(A," 50 DMA ",2.2,colorBlack,colorYellow);
AddColumn(B," 200 DMA ",2.2,colorBlack,colorYellow);
_SECTION_END();