Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Elder Autoevelope for Amibroker (AFL)
Elder autoevelope with deviation control. refer to dr. elder books.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | pds = Param ( "EMA periods" , 21, 1, 112); deviation= Param ( "deviation" ,32,2,350); AvgX= EMA ( C ,pds); shift= EMA ( C ,pds)* (deviation)/1400; UpperBand=AvgX+shift; LowerBand=AvgX-shift; Plot (UpperBand , "UpperBand" , colorRed , styleLine ); //| styleThick Plot (Avgx , "MidleBand" , colorYellow , styleLine ); //| styleThick Plot (LowerBand, "LowerBand" , colorGreen , styleLine ); //| styleThick |
3 comments
Leave Comment
Please login here to leave a comment.
Back
need to change the deviation value… if it does not enclose… its very good ocillator..
deviation=Param(“deviation”,32,2,350);
Hi Sir,
Can any body can code an indicator that will give signal when outside bar but only above or below 21EMA.
Thanks