Explore Common Indicator for Amibroker (AFL)
Suseda over 12 years ago Amibroker (AFL)
Find out the stock will increase dramatically
KISS Keep it Simple Stupid, anything!!!
Pro Trader focus simple, Amateur focus on complexity
Screenshots
Indicator / Formula
Copy & Paste Friendly
//suseda.specialfx@yahoo.com
//Find out stock will Jumping on The Sky
ATRP = (ATR(10) - ATR(100)) >= 0.5 ;
ATRN = (ATR(10) - ATR(100)) < 1 ;
AggUp = MA(C,13)-1 < MA(C,13) ;//Aggling Up
MAG = Cross ( MA(C,13), EMA(C,26)) ;
MAD = Cross ( MA(C,26), MA(C,13) ) ;
Eksp = ( MA(C, 13) - MA(C, 26) ) > ATR(10) ;
Kont = ( MA(C, 26) - MA(C, 13) ) < ATR(10) ;
//---------------------------------------------------------------------
//Breakout
//BrkMA200 = C> MA(C, 175);
// Strong Trend
StrTren = ADX(14) >=23;
//Buy - Sell
Buy = MAG AND ATRP;
Sell = ATRN AND MAD AND Kont;
//Buy = BrkMA200 AND StrTren ;
//Buy = MAG AND StrTren AND AggUp;
//Filter = MA(V*C,20)>1000000000;
Filter = Buy OR Sell;
//Table Explorations
AddColumn (C,"Close", 1.0);
AddTextColumn(WriteIf(Buy,"Buy",WriteIf(Sell,"Sell","")), "Sinyal", 1.0, IIf(Buy, colorGreen,colorRed));
//SetSortColumns(-7, 4);3 comments
Leave Comment
Please login here to leave a comment.
//One can add-in the following lines to visualize
//when the signals are fired… And, judge by yourself.
I couldn’t get how to get this work
I tried and find all the BUY stocks (out of 3500 DB) are all at/or close to all time highs (about a dozen BUY’s). I am looking for formula that will signal breakout from stocks trending at LOW and breaking out i.e. Buy low … Sell High per Wyckoff (Spring) and Weinstein etc.
Any Ideas?
Dick