Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
combine ema 5 vs ema 20 and stochastic for Amibroker (AFL)
explore indikator
Buy = EMA5>EMA20 AND StochasticK>StochasticD
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | //COMBINE AFL EMA 5 VS 24 AND STO 5,3,3 EMA5 = EMA ( C , 5); EMA20= EMA ( C , 10); StochasticD = StochD ( 5 , 3 , 3 ); StochasticK = StochK ( 5 , 5); EmmaDIFF=(EMA5-EMA20)/EMA20; StochDIFF= abs (StochasticK-StochasticD)/StochasticD; AllDIFF=(EmmaDIFF+StochDIFF)/2; Buy = EMA5>EMA20 AND StochasticK>StochasticD; Filter = EMA5>EMA20 AND StochasticK>StochasticD; Buy = EMA5>EMA20 AND StochasticK>StochasticD AND AllDIFF>=0.25; Filter = Buy ; AddColumn (AllDIFF, "Power" , 1.5); AddColumn ( Buy , "Beli" , 1); |
0 comments
Leave Comment
Please login here to leave a comment.
Back