AFL for Relative Momentum Index

MarketSecrets - Learn To Trade Like a Pro

AFL for Relative Momentum Index:

The Relative Momentum Index (RMI) was developed by Roger Altman in 1993 as an attempt to improve the Relative Strength Index (RSI) by adding a component of momentum to the RSI. The Relative Momentum Index uses change of closing price between the current bar and N bars before instead of 1-dar change in price.

The Relative Momentum Index is calculated as ratio of the average upward changes to the average downward changes over a given period of bars. Where each change is calculated for the given number of bars. It could be said that RSI is the RMI which uses a momentum period of 1 to receive individual changes.

The same as with RSI, the RMI indicator moves in the range of 0 to 100; and the same as with RSI, the relative Momentum Index’s values above 70 and below 30 are considered as an indication of overbought and oversold conditions respectfully.

In technical analysis the RMI indicator is analyzed in the same way the RSI is. A simple trading system based on the RMI indicator would suggest buying when RMI values advance above 30 after being below it and it would suggest selling when RMI values drop below 70 after being above it.

Since RMI readings above 50 are considered as bullish and RMI readings below 50 are considered as bearish, some traders may choose to generate signals on the crossovers of the RMI and 50 center line: sell when RMI decline below 50 and buy when RMI advances above 50.

Third way of using the Relative Momentum Index involves Exponential MA applied to RMI and used as a signal line. In this case the RMI indicator consist of two lines: RMI itself and Signal Line (EMA applied to the RMI). The signals are generated on the crossovers of the RMI and its Signal Line: sell when RMI drops below its Signals Line and buy when RMI raises above its Signal Line.

Divergence between RMI and price direction is also taken into consideration by many traders as an indication of the possibility of a reversal in the near future.

Script:

periods = Param( “Periods”, 20, 1, 200, 1 );

momentum = Param( “Momentum”, 2, 1, 200, 1 );
p1 = Param(“TL 1 Periods”, 25, 2, 300, 1, 10);
p2 = Param(“TL 2 Periods”, 5, 2, 300, 1, 10);
TL1 = LinearReg(C, p1);
TL2 = EMA(TL1, p2);
z = RMI(periods, momentum) ;
Col1 = IIf(TL1 > TL2, ParamColor(“TL Up Colour”, colorYellow), ParamColor(“TL Dn Colour”, colorCustom12));
Plot(z,””, Col1, styleThick | styleNoLabel );

Overbought = Param( “Overbought”, 70 );
Oversold = Param( “Oversold”, 30 );

OverboughtColor = ParamColor(“Overbought Color”,colorDarkOliveGreen);
OversoldColor = ParamColor(“Oversold Color”,colorDarkRed);

Plot(Overbought,””, colorGreen, styleThick | styleDashed | styleNoLabel );
Plot(Oversold,””, colorRed, styleThick | styleDashed | styleNoLabel | styleNoDraw );
PlotOHLC(z,z,50,z,””,IIf(z>50, OverboughtColor, OversoldColor), styleCloud | styleNoLabel | styleClipMinMax, Oversold, Overbought );

W3050COLOR = IIf(50 > 30,colorPlum,colorDarkOliveGreen);
PlotOHLC(30,30,50,50,” “,W3050COLOR,styleCloud | styleNoLabel | styleNoTitle);

Download AFL

error: Content is protected !!