Page 4 of 11
Re: MT5 Rsi indicators
Posted: Thu Aug 11, 2022 4:29 am
by ProjectMash
Good day/Good evening fellow traders, hope you're all good.
Can you please help convert the attached indicator(s) from mt4 to mt5. Your assistance will be highly appreciated.
Re: MT5 Rsi indicators
Posted: Thu Aug 11, 2022 4:33 am
by mrtools
ProjectMash wrote: Thu Aug 11, 2022 4:29 am
Good day/Good evening fellow traders, hope you're all good.
Can you please help convert the attached indicator(s) from mt4 to mt5. Your assistance will be highly appreciated.
Nothing can be done with ex4 files.
Re: MT5 Rsi indicators
Posted: Thu Aug 11, 2022 4:53 am
by ProjectMash
mrtools wrote: Thu Aug 11, 2022 4:33 am
Nothing can be done with ex4 files.
Thanks for your response, if you don't mind, where can I get similar indicators?
Re: MT5 Rsi indicators
Posted: Tue Aug 30, 2022 5:57 pm
by creativethinker
mrtools wrote: Wed Feb 23, 2022 3:24 pm
Pretty sure the alert issue is fixed in this version, also added an external parameter "alertsOnEveryBreak" if true you will get arrows and alerts like before, and if false should only get alerts and arrows on the first change.
Hi Sir,
Can you please fix the bug if I drag the indicator on the chat with default
RSI settings that is 65 and 35 it shows Sell and Buy (Overbought and Oversold) signals on on 35 Level. As you can see in the Chart attached. If I set to Overbought and Oversold levels to 60 by 60 then it will show you signals from 60-60 Levels. What is I want is If I set
Oversold Level= 40 or 30 it should give signals from that level and for
Overbought Level=60 if I set it shows signals on that level. Can you please fix?
Re: MT5 Rsi indicators
Posted: Wed Aug 31, 2022 2:43 am
by mrtools
creativethinker wrote: Tue Aug 30, 2022 5:57 pm
Hi Sir,
Can you please fix the bug if I drag the indicator on the chat with default
RSI settings that is 65 and 35 it shows Sell and Buy (Overbought and Oversold) signals on on 35 Level. As you can see in the Chart attached. If I set to Overbought and Oversold levels to 60 by 60 then it will show you signals from 60-60 Levels. What is I want is If I set
Oversold Level= 40 or 30 it should give signals from that level and for
Overbought Level=60 if I set it shows signals on that level. Can you please fix?
The arrows on that indicator are only supposed to go off when the histogram changes color.
The code is like this
Code: Select all
wrk[i].trend = (i>0) ? (wrk[i].rsi>levUp) ? 1 : (wrk[i].rsi<levDn) ? -1 : wrk[i-1].trend : 0;
if (wrk[i].trend == 1 && wrk[i].rsi > 40) { flat[i] = 1; valc[i] = 0; }
if (wrk[i].trend == -1 && wrk[i].rsi < 60) { flat[i] = -1; valc[i] = 1; }
so even though if the rsi > levup it's bullish but rsi still needs to be > 40 for a buy signal and rsi < levdn and < 60 for sell signal. The arrows are drawn according to valc.
Re: MT5 Rsi indicators
Posted: Thu Sep 29, 2022 1:07 am
by 太虚一毫
QQE seems like it should be in this thread.
Looking forward to the teacher making the QQE histo.mq5 version. Infinite merit!
Re: MT5 Rsi indicators
Posted: Thu Sep 29, 2022 4:09 am
by mrtools
太虚一毫 wrote: Thu Sep 29, 2022 1:07 am
QQE seems like it should be in this thread.
Looking forward to the teacher making the QQE histo.mq5 version. Infinite merit!
This is a simplified mt4 version (bottom in the screenshot) you may be interested in that I will use to make the mt5 version.
Re: MT5 Rsi indicators
Posted: Thu Sep 29, 2022 9:31 am
by 太虚一毫
mrtools wrote: Thu Sep 29, 2022 4:09 am
This is a simplified mt4 version (bottom in the screenshot) you may be interested in that I will use to make the mt5 version.
This simplified version shows the best of the original.
very good!
Re: MT5 Rsi indicators
Posted: Thu Sep 29, 2022 10:24 am
by mrtools
太虚一毫 wrote: Thu Sep 29, 2022 9:31 am
This simplified version shows the best of the original.
very good!
Yeah but the mt5 kicking me butt now thought it would be simple but so far, its anything but.
Re: MT5 Rsi indicators
Posted: Sat Oct 01, 2022 3:29 am
by mrtools
太虚一毫 wrote: Thu Sep 29, 2022 9:31 am
This simplified version shows the best of the original.
very good!
Finally made this version, seems pretty close.