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)
Rating:
3 / 5 (Votes 4)
Tags:
trading system, amibroker, exploration
BUY FOR NEXT 2- 3 DAYS
Similar Indicators / Formulas
20 Day High Breakout
Submitted
by ashokram1 over 13 years ago
Range Constriction
Submitted
by davidh over 13 years ago
Fractal SAR with buy sell
Submitted
by sikander999 about 14 years ago
Three Line Net Bar And Tendency
Submitted
by moapereira over 14 years ago
2 Day RSI filter/buy
Submitted
by davemmm almost 15 years ago
Hilbert study
Submitted
by realkaka almost 15 years ago
Indicator / Formula
Copy & Paste Friendly
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 26 27 28 29 30 31 32 | _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 (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back