Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
JMA System for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
The JMA trading system.
Screenshots
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | _SECTION_BEGIN ( "JMA System" ); #include <JMA_Include.afl>; JMAarray5Day = Jma( Close , 5); JMAarray10Day = JMA( Close , 10); JMAarrayDelta = JMAarray5Day - JMAarray10Day; //-----------------------------------Signals--------------------------------------- Buy = Cross (JMAarray5Day, JMAarray10Day); //cross JMAarray10Day rising slope Sell = Cross (JMAarray10Day, JMAarray5Day); //cross JMAarray10Day falling slope Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); //-----------------------------------Plot--------------------------------------- SetChartOptions (0, chartShowArrows | chartShowDates ); PlotColor = IIf ( Buy , colorBrightGreen , IIf ( Sell , colorRed , colorLightBlue )); Plot (JMAarray5Day, "5 day JMA" , ParamColor ( "Color 5 day JMA" , colorOrange ), ParamStyle ( "Style 5 day JMA" )); Plot (JMAarray10Day, "10 day JMA" , ParamColor ( "Color 10 day JMA" , colorWhite ), ParamStyle ( "Style 10 day JMA" )); Plot (JMAarrayDelta, "JMAarrayDelta" , PlotColor, styleHistogram | styleOwnScale ); _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Why this is only good for daily trading? I got bad result for hourly and other intraday. Is this really clone of Jurik Moving Average?