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 ....
Relative Momentum Index (RMI) for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /* Relative Momentum Index */ /* AFL code by Prakash Shenoi */ Length= Param ( "Length?" ,2,3,20,1); //default =14 or 20 mom= Param ( "Momentum?" ,2,3,11,1); //default = 4 or 5 xRMI = RMI (Length,mom); Plot (xRMI, " Relative Momentum Index (" + WriteVal (Length,1.0)+ ")" , 34+4,1 + styleThick ); Plot (70, "" , colorDarkGrey , styleDashed | styleNoLabel ); //OS Plot (30, "" , colorDarkGrey , styleDashed | styleNoLabel ); //OB Buy = Cross ( xRMI, 30 ); Sell = Cross ( 70, xRMI ); PlotShapes ( shapeUpArrow * Buy + shapeDownArrow * Sell , IIf ( Buy , colorGreen , colorRed ) ); GraphXSpace =5; /*Buy and Sell Conditions*/ Buy = Ref (xRMI,-1)<40 AND xRMI > Ref (xRMI,-1); Sell = Ref (xRMI,-1)>70 AND xRMI < Ref (xRMI,-1); Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); /*End Buy and Sell Conditions*/ |