Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
And as I understand Orange color is uptrend if above zero, and SkyBlue color is downtrend if below 0. If SkyBlue color is above zero so the trend is changing and will be changed finally if SkyBlue above zero will be changed to Orange above zero.
I am a new member of this forum, and what a great forum I must say . Keep up the good work .
Anyway I am very interested in this RSIFilter indicator, because it is exactly what I am using in my strategy, which I am putting together. I just had to check the RSI manually and now I don't have to thanks to you guys .
I have recompiled the indicator into a multitimeframe indicator, so that we can check if for example our 30M RSIFilter complies with the daily,4H and 1H RSIFilter, all in the same chart. Very convenient .
However it would be very nice if someone could write a script or something showing a comment lin in the upper right corner saying " daily direction is up/down, 4H direction is up/down .....".
However it would be very nice if someone could write a script or something showing a comment lin in the upper right corner saying " daily direction is up/down, 4H direction is up/down .....".
I added 4h to yours. I know the script but do not know how to make it write 2 lines for 2 time frames. Here is the 4h script... easily changed to daily.
double rsi = iRSI(NULL, PERIOD_H4, 14, PRICE_CLOSE, 0);
if (rsi == 50.0)
Comment("4hr RSI is flat ",rsi);
else if (rsi > 50.0)
Comment("4hr RSI is long ",rsi);
else if (rsi < 50.0)
Comment("4hr RSI is short ",rsi);
__________________
"Only those who dare to fail greatly can ever achieve greatly."
I am a new member of this forum, and what a great forum I must say . Keep up the good work .
Anyway I am very interested in this RSIFilter indicator, because it is exactly what I am using in my strategy, which I am putting together. I just had to check the RSI manually and now I don't have to thanks to you guys .
I have recompiled the indicator into a multitimeframe indicator, so that we can check if for example our 30M RSIFilter complies with the daily,4H and 1H RSIFilter, all in the same chart. Very convenient .
However it would be very nice if someone could write a script or something showing a comment lin in the upper right corner saying " daily direction is up/down, 4H direction is up/down .....".