Page 250 of 281

Re: RSI Indicators for MT4

Posted: Tue Jul 04, 2023 8:29 am
by NewLight
kvak wrote: Tue Jul 04, 2023 7:27 am What type of histogram? I made this 0-1 histo.
Image
Perfect, Thank You very much... :thumbup:

Re: RSI Indicators for MT4

Posted: Thu Jul 06, 2023 9:29 am
by mrtools
Chickenspicy wrote: Thu Jul 06, 2023 9:27 am theres no heikin ashi in it

Re: RSI Indicators for MT4

Posted: Thu Jul 06, 2023 9:35 am
by Chickenspicy
mrtools wrote: Thu Jul 06, 2023 9:29 am
using with orbital and tma alert :thumbup: thanks

Re: RSI Indicators for MT4

Posted: Thu Jul 06, 2023 10:01 am
by Chickenspicy
mrtools wrote: Thu Jul 06, 2023 9:29 am
may you please explain what trend biased price is? that seems to work the best

Re: RSI Indicators for MT4

Posted: Thu Jul 06, 2023 10:22 am
by mrtools
Chickenspicy wrote: Thu Jul 06, 2023 10:01 am may you please explain what trend biased price is? that seems to work the best
It determines price depending on if open price <> close price.

Code: Select all

if (close[i]>open[i])
            return((high[i]+close[i])/2.0);
   else  return((low[i]+close[i])/2.0);  

Re: RSI Indicators for MT4

Posted: Fri Jul 14, 2023 12:03 pm
by mrtools
dmnik wrote: Fri Jul 14, 2023 8:53 am Dear mptools! Please be so kind as to add arrows to your indicator (! rsi candles with keltner channel) please, as in the screenshot.
I provide you with two source codes for arrows. I put one on top of the other indicator and I got two in one. I would like everything to be in one. Sapibo!
RSI Candlesticks with Keltner Channels & Entry Arrows

Made this version.

Re: RSI Indicators for MT4

Posted: Fri Jul 14, 2023 1:59 pm
by sal
mrtools wrote: Fri Jul 14, 2023 12:03 pm Made this version.
i suggest to use another one more indicator to avoid the false signals (arrows) now added while strong trends time. always traders get failure (binary) to take trade based on KC and rsi/stoch...

Re: RSI Indicators for MT4

Posted: Fri Jul 14, 2023 4:38 pm
by dmnik
mrtools wrote: Fri Jul 14, 2023 12:03 pm Made this version.
Image
Dear mptools! Could you add a confirmation signal like the RSI_TMA indicator.

Re: RSI Indicators for MT4

Posted: Sat Jul 15, 2023 4:50 am
by shinnosuke
dmnik wrote: Fri Jul 14, 2023 4:38 pm Dear mptools! Could you add a confirmation signal like the RSI_TMA indicator.
Image

Image
Thank you for sharing this bro,
what is the best set you are using for this RSI_TMA indicator? and what time frame ?
Regards.

Re: RSI Indicators for MT4

Posted: Fri Jul 21, 2023 12:27 am
by 256robertm
Rox wrote: Fri Apr 30, 2021 1:27 am RSI stop and reverse


Image



RSI_stop&reverse.mq4
Cany anyone give a brief explanation how this indicator is used?