View Single Post
  #5 (permalink)  
Old 10-16-2006, 09:51 PM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 676
cja is on a distinguished road
RSI & MA's

Quote:
Originally Posted by xcooper
Hi All,

I have just switched over from VTrader to Metatrader, and have searched for a while for an indicator called "Moving Average RSI", but no luck so far. This MARSI indicator works quite well to identify trend as well as getting good entry. Here is the formula that I copy from VTrader:

=====================
rsi_r:= (CLOSE - ref(CLOSE,-1));
rsi_rs := Wilders(if(rsi_r>0,rsi_r,0),tpr) / Wilders(if(rsi_r<0,Abs(rsi_r),0),tpr);
RS:= 100-(100/(1+rsi_rs));

{ Moving Average of Relative Strength Index}

MA1:=MOV(RS,MA1pr,E);
MA2:=MOV(RS,MA2pr,E);

=====================

The attached capture screen shows the look of the indicator. Does anyone have idea where to find this indicator or something similar for Metatrader 4 ?

Thanks

Attachment 10816

Here are 2 RSI's one with a FIB curve and the other with a double MA


RSI MA Signal.mq4

T3_RSI.mq4
Reply With Quote