Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
5/15 high low ema exploration for Amibroker (AFL)
5/15high & low ema for early & safe buy & sell signals.
Similar Indicators / Formulas
Indicator / Formula
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | _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 () ); _SECTION_END (); _SECTION_BEGIN ( "ema_crossover" ); x = EMA ( Close ,5); y = EMA ( High ,15); z = EMA ( Low ,15); Plot ( EMA ( Close ,5), "" , colorRed , styleLine ); Plot ( EMA ( Low ,15), "" , colorPaleGreen , styleLine ); Plot ( EMA ( High ,15), "" , colorDarkGreen , styleLine ); Buy = Cross (x,z); PlotShapes ( shapeUpArrow * Buy , colorLightBlue ); XR=( EMA ( Close ,5) * (2 / 6 - 1) - EMA ( Low ,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11); Title = Name () + " " + Date ()+ " " + EncodeColor ( colorBlue ) + "5/15 EMA " + EncodeColor ( colorBlack ) + " O " + O + " H " + H + " L " + L + " C " + C + "\n" ; Buy2= Cross (x,y); PlotShapes ( shapeUpArrow *Buy2, colorBlue ); AlertIf ( Buy2, "SOUND C:\\Windows\\Media\\notify.wav" , "Audio alert" , 2 ); XR=( EMA ( Close ,5) * (2 / 6 - 1) - EMA ( High ,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11); Title = Name () + " " + Date ()+ " " + EncodeColor ( colorBlue ) + "5/15 EMA " + EncodeColor ( colorBlack ) + " O " + O + " H " + H + " L " + L + " C " + C + "\n" ; Sell = Cross (y,x); PlotShapes ( shapeDownArrow * Sell , colorWhite ); AlertIf ( Sell , "SOUND C:\\Windows\\Media\\chord.wav" , "Audio alert" , 2 ); XR=( EMA ( Close ,5) * (2 / 6 - 1) - EMA ( High ,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11); Title = Name () + " " + Date ()+ " " + EncodeColor ( colorBlue ) + "5/15 EMA " + EncodeColor ( colorBlack ) + " O " + O + " H " + H + " L " + L + " C " + C + "\n" ; Sell2= Cross (z,x); PlotShapes ( shapeDownArrow *Sell2, colorBlack ); AlertIf ( Sell2, "SOUND C:\\Windows\\Media\\chord.wav" , "Audio alert" , 2 ); XR=( EMA ( Close ,5) * (2 / 6 - 1) - EMA ( Low ,15) * (2 / 11 - 1)) / (2 / 6 - 2 / 11); Title = Name () + " " + Date ()+ " " + EncodeColor ( colorBlue ) + "5/15 EMA " + EncodeColor ( colorBlack ) + " O " + O + " H " + H + " L " + L + " C " + C + "\n" ; _SECTION_END (); /////////////////////////////////// Exploration /////////////////////// Filter = Buy OR Buy2 OR Sell OR Sell2; /////////// General Columns //////////////////////// AddTextColumn ( FullName ( ), "Name" ); AddColumn ( C , "Close" ); AddTextColumn ( MarketID ( 1 ), "Market name" ); //////////////// BUY/SELL SIGNALS /////// AddColumn ( IIf ( Buy ,1, IIf ( Sell ,-1, Null )) , "Signal1" ,1.0, colorWhite , IIf ( Buy , colorGreen , IIf ( Sell , colorRed , colorWhite ))); AddColumn ( IIf (Buy2,1, IIf (Sell2,-1, Null )) , "Signal2" ,1.0, colorWhite , IIf (Buy2, colorGreen , IIf ( Sell2, colorRed , colorWhite ))); //////////////////////////////////// Exploration over //////////////////////////// |
4 comments
Leave Comment
Please login here to leave a comment.
Back
IT SHOWING ERRORE CORRECT IT OTHER WISE NO USE FREIND
Fixed
very good afl early detection and low noise
Hi admin…!!
Another good AFL as Krithi said… LOW NOISE>.. THNKS