Everything about RSI - page 27

 
kasio79:
Friends,

I'm trying a strategy based on correlation of currencies and require help finding an indicator. What I want to do is place 2 or more RSI's from different currency pairs on the same chart.

I'm no coder by any means and was tinkering with the original RSI indicator in an effort to add another currency. Failed!

Can anyone please help me do this or if they have anything like this already done please share.

Thanks in advance,

Kasio

PS If there is a way of simply allowing an extern string/input for the currency you want to be used for the indicator, I can then open multiple such indicators on the same window.

You could try using the internal irsi function together with an extern string TheSymbol

double iRSI( string symbol, int timeframe, int period, int applied_price, int shift)

so it looks like this

rsi=iRSI(TheSymbol, H1,14,0,i);

Alternatively if you want to keep to the source code, you will have to change the Close, Open, High, Low to iClose iOpen etc which is how I do it. I load the string array Symbols.Pair with the pairs I want and then loop through all sy

mbol pairs using currency from zero to number of pairs minus 1

iClose(Symbols.Pair[currency], PERIOD_H1,0) - iOpen(Symbols.Pair[currency], PERIOD_H1,0)

Use the seach function in MetaEditor to find the exact sequence of parameters for the built in functions.

Tzuman

 

post 251 chart

The chart in post 251 [from member macd&rsi] shows an indicator "MACD of RSI".

Can anyone attach this indicator for MT4??

Thank you.

 

...

michaelB

It was originally posted on this post (with an explanation how to get the MACD of RSI) : https://www.mql5.com/en/forum/178416/page5

michaelB:
The chart in post 251 [from member macd&rsi] shows an indicator "MACD of RSI".

Can anyone attach this indicator for MT4??

Thank you.
 

MACD of RSI

mladen:
michaelB It was originally posted on this post (with an explanation how to get the MACD of RSI) : https://www.mql5.com/en/forum/178416/page5

That's the one!! Thanks again.

 

hello !

mladen:
Try out this one Had to shift RSI values down by 50 (so that the histogram is visible and that it is cenetered around 0 line) but I think it will suite your needs

same indicator but with stochastic( no RSI ) it is possible ,thanks

 

...

plostina

Posted it at the stochastic indicators thread (here : https://www.mql5.com/en/forum/177239/page28 )

plostina:
same indicator but with stochastic( no RSI ) it is possible ,thanks
 

rsi and stochastic

mladen:
plostina Posted it at the stochastic indicators thread (here : https://www.mql5.com/en/forum/177239/page28 )

thanks a lot , mladen

 

...

2 versions of "dynamic RSI" indicator posted here : https://www.mql5.com/en/forum/173787/page4

Files:
 

need help modifying this mtf rsi indicator

i got this indi from the multi time frame thread here but i see that the line does not change color after crossing up/down the mid (50) level and also does not have sound alert.

my question/request is:

1. is it possible to make the line change color to green when it cross up from 50 level and red on opposite condition?

2. since it is a MTF indicator is it possible to add sound alert as the line change color in real time (not only when the 5 minute bar formed completely because some mtf indi with alert only give out alert once the m5 bar formed completely)?

attached below is the #MTF_RSI...

can someone help me, please...

thanks in advance.

Files:
mtf_rsi.mq4  4 kb
 

...

Don_xyZ,

Check the indicator at this post : https://www.mql5.com/en/forum/177858/page2

Don_xyZ:
i got this indi from the multi time frame thread here but i see that the line does not change color after crossing up/down the mid (50) level and also does not have sound alert.

my question/request is:

1. is it possible to make the line change color to green when it cross up from 50 level and red on opposite condition?

2. since it is a MTF indicator is it possible to add sound alert as the line change color in real time (not only when the 5 minute bar formed completely because some mtf indi with alert only give out alert once the m5 bar formed completely)?

attached below is the #MTF_RSI...

can someone help me, please...

thanks in advance.
Reason: