Re: MT5 Rsi indicators

34
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.
Image
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?
These users thanked the author creativethinker for the post:
Chickenspicy

Re: MT5 Rsi indicators

35
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?
Image

Image
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.
These users thanked the author mrtools for the post:
Jedidiah


Re: MT5 Rsi indicators

37
太虚一毫 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.
These users thanked the author mrtools for the post (total 2):
太虚一毫, siphoMaseti


Who is online

Users browsing this forum: No registered users and 4 guests