Intraday Momentum Indicator (IMI)

 

Hi,

Sry looks like my previous message didnt show up.

I am looking for the Intraday Momentum Indicator for MT4.

So far found it on Metastock and VTtrader, but not luck for MT4 ( I am not advertising, I love MT4)

The code in VTtrader is:

IMI_diff:= C - O;

IMI_UpSum:= if(Smoothing=0, mov(if(IMI_diff>0,IMI_diff,0),periods,E), Wilders(if(IMI_diff>0,IMI_diff,0),periods));

IMI_DownSum:= if(Smoothing=0, mov(if(IMI_diff<0,Abs(IMI_diff),0),periods,E),  Wilders(if(IMI_diff<0,Abs(IMI_diff),0),periods)); 
scscsc
MomInd:= 100 * (IMI_UpSum / (IMI_UpSum + IMI_DownSum));

Does anyone have it, or can provide some help ?

 
No one can help ?
 

What's "C-0"?

Do you know what it calculates...otherwise it's too much work trtying to understand what it does....I'm a little lazy, you know... ;D

 

More info on the indicator:

A combination of the Relative Strength Index and Candlestick Analysis gives the Intraday Momentum Index, that was developed by Tushar Chande.

The IMI calculation is similar to RSI, but intraday opening and closing prices relationships are used here in order to find out if the day is up or down. An up day means that the close is higher than the open. It is signified by white candlesticks. A down day means that the close is lower than the open and it is signified by black candlesticks.

As well as RSI, the index rise over 70 indicates overbought conditions, that mean lower prices in future. Index values lower than 30 mean a possibility of oversold situation that is followed by higher prices. You should estimate the forex market trendiness using all overbought/oversold indicators before taking any actions on an signals.

The formula is:

Formula

Hope that gives you enough clue to work out something.

Reason: