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
32Nothing can be done with ex4 files.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.
Re: MT5 Rsi indicators
33Thanks for your response, if you don't mind, where can I get similar indicators?
Re: MT5 Rsi indicators
34Hi Sir,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.
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?
- These users thanked the author creativethinker for the post:
- Chickenspicy
Re: MT5 Rsi indicators
35The arrows on that indicator are only supposed to go off when the histogram changes color.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 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; }
Re: MT5 Rsi indicators
36QQE seems like it should be in this thread.
Looking forward to the teacher making the QQE histo.mq5 version. Infinite merit!
Looking forward to the teacher making the QQE histo.mq5 version. Infinite merit!
Re: MT5 Rsi indicators
37This is a simplified mt4 version (bottom in the screenshot) you may be interested in that I will use to make the mt5 version.太虚一毫 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!
- These users thanked the author mrtools for the post (total 2):
- 太虚一毫, siphoMaseti
Re: MT5 Rsi indicators
38This simplified version shows the best of the original.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.
![Like :thumbup:](https://forex-station.com/images/smilies/icon_thumbup.png)
very good!
Re: MT5 Rsi indicators
40Finally made this version, seems pretty close.太虚一毫 wrote: Thu Sep 29, 2022 9:31 am This simplified version shows the best of the original.![]()
very good!
- These users thanked the author mrtools for the post (total 2):
- 太虚一毫, siphoMaseti