Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
EMA 315 for Amibroker (AFL)
EMA 315 used for scanning stocks with EMA 3 crossover EMA 15 (BUY) and EMA 3 crossdown EMA 15 (SELL).
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | // EMA Cross-315 Range1= Optimize ( "range1" ,3,1,100,1); Range2= Optimize ( "range2" ,15,1,100,1); Plot ( Close , "Close" , colorBlack , styleCandle ); Plot ( EMA ( Close ,range1), "3d-ema" , colorRed ); Plot ( EMA ( Close ,range2), "15d-ema" , colorBlue ); Buy = Cross (range1,range2); Buy = Cross (( Close ),( EMA ( Close ,range1))); Buystop = Ref ( EMA ( Close ,range1),-1); BuyPrice = Max (Buystop, Low ); Sell = Cross ( EMA ( Close ,range2),( Close )); Sellstop = Ref ( EMA ( Close ,range1),-1); SellPrice = Min (sellstop, High ); Short = Sell ; Cover = Buy ; PlotShapes ( shapeUpArrow * Buy , colorBlack ); PlotShapes ( shapeDownArrow * Sell , colorRed ); GfxDrawText ( "EMA315" , 4, 12, 350, 40); |
0 comments
Leave Comment
Please login here to leave a comment.
Back