Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
EMA Crossover Trading for Amibroker (AFL)
This is a simple Candle Stick Chart which plots buy & sell signals considering EMA crossover of price. It also has got an stop line plotted.
Screenshots
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | _SECTION_BEGIN ( "Kandle" ); Plot ( C , "close" , IIf ( O > C , colorRed , colorWhite ), styleCandle ); _SECTION_END (); _SECTION_BEGIN ( "Stops" ); //Concept from Bulkowski’s Stop Placement.For further details go to http://thepatternsite.com/stops.html. //First coded by Southwind from chartistsbd.net //Modified by Rais. pr= Param ( "Period" ,22,2,100,1); Sumdif=0; dif=0; for (i=0;i<pr;i++) { dif= Ref ( High ,-i)- Ref ( Low ,-i); Sumdif=Sumdif+dif; } Sumdif=Sumdif/pr; mp = Param ( "Multiplier" ,2,0.25,5,0.25); Sumdifml=(Sumdif*1); Sumdifml2=(Sumdif*1.5); Sumdifml3=(Sumdif*mp); bt= Param ( "BETA Stop" ,22,2,100,1); p= ParamField ( "Price Field" ,3); Betastops= HHV (p,bt) - Sumdifml; Betastops2= HHV (p,bt) - Sumdifml2; Betastops3= HHV (p,bt) - Sumdifml3; //Plot(Betastops, " BATS", ParamColor( "Color", colorYellow ),ParamStyle("Style",styleThick,maskAll)); Plot (Betastops2, " BATS2" , ParamColor ( "Color2" , colorGold ), ParamStyle ( "Style2" , styleThick , maskAll )); Plot (Betastops3, " BATS3" , ParamColor ( "Color3" , colorOrange ), ParamStyle ( "Style3" , styleThick , maskAll )); _SECTION_END (); _SECTION_BEGIN ( "expl-" ); fastmalenght=9; slowmalength=16; fastma= EMA ( C , fastmalenght ); slowma= EMA ( C , slowmalength ); eBuy= Cross ( fastma , slowma ); xbuy= ADX ()>10; eSell= Cross ( slowma , fastma ); batsell=( Close <Betastops3 ); Buy =eBuy AND xbuy; Sell = (esell) OR (batsell); /* exrem is one method to remove surplus strade signals. It removes excessive signals of arrow */ Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); ApplyStop (stopTypeLoss,stopModePercent, Optimize ( "maX. loss stop level" , 12, 2, 30, 1 ), True ); _SECTION_END (); _SECTION_BEGIN ( "Shape" ); PlotShapes ( IIf ( Sell ==1, shapeDownArrow , shapeNone ), colorYellow , 0, High , Offset=-20); PlotShapes ( IIf ( Buy ==1, shapeUpArrow , shapeNone ), colorWhite , 0, Low , Offset=-20); _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Good