Page 105 of 323
Re: RSI Indicators for MT4
Posted: Wed Aug 22, 2018 8:47 pm
by mntiwana
"GG-RSI-CCI alerts arrows mtf"
Mrtools made it mtf and already posted in FS,reposting it here again as all versions stayed altogether within their appropriate thread
Re: RSI Indicators for MT4
Posted: Wed Aug 22, 2018 9:34 pm
by Desatar
Hello,
seems like this is the right thread for my question.
can somebody look into the code and explain to me how this indi calculates the data?
It seems like the indi uses moving average, rsi and cci all together to show on histogram.
I need more information to put the right settings in. Otherwise it's useless.
Very much Appreciated.
D.
Re: RSI Indicators for MT4
Posted: Wed Aug 22, 2018 10:05 pm
by Jimmy
Desatar wrote: Wed Aug 22, 2018 9:34 pm
Hello,
seems like this is the right thread for my question.
can somebody look into the code and explain to me how this indi calculates the data?
It seems like the indi uses moving average, rsi and cci all together to show on histogram.
I need more information to put the right settings in. Otherwise it's useless.
Very much Appreciated.
D.
Hey D, which code you are talking about?
Re: RSI Indicators for MT4
Posted: Thu Aug 23, 2018 12:03 am
by Desatar
Jimmy wrote: Wed Aug 22, 2018 10:05 pm
Hey D, which code you are talking about?
Sorry. Forgot to post.
I know there are a lot of variations postet from mntiwana posted already.
I just wanna understand this indi to decide to use it or not.
Thx.
D.
Re: RSI Indicators for MT4
Posted: Thu Aug 23, 2018 12:17 am
by mrtools
Desatar wrote: Wed Aug 22, 2018 9:34 pm
Hello,
seems like this is the right thread for my question.
can somebody look into the code and explain to me how this indi calculates the data?
It seems like the indi uses moving average, rsi and cci all together to show on histogram.
I need more information to put the right settings in. Otherwise it's useless.
Very much Appreciated.
D.
It is using a 2 ma's of cci,and 2 ma's of rsi. The ma's of cci and rsi are controlled by AVG_Period 1 and AVG_period 2 the cci/rsi is controlled by Ind_Period. For signals if the ma of rsi AVG_Period 1 > ma of rsi Avg_Period 2 and the ma of cci AVG_Period 1 >ma of cci Avg_Period 2 would be buy(Lime Histogram) and the opposite for sell(Orange Red Histogram) both the rsi ma and cci ma have to be either buy or sell or you get the red histogram(flat market).
Re: RSI Indicators for MT4
Posted: Thu Aug 23, 2018 12:43 am
by Desatar
mrtools wrote: Thu Aug 23, 2018 12:17 am
It is using a 2 ma's of cci,and 2 ma's of rsi. The ma's of cci and rsi are controlled by AVG_Period 1 and AVG_period 2 the cci/rsi is controlled by Ind_Period. For signals if the ma of rsi AVG_Period 1 > ma of rsi Avg_Period 2 and the ma of cci AVG_Period 1 >ma of cci Avg_Period 2 would be buy(Lime Histogram) and the opposite for sell(Orange Red Histogram) both the rsi ma and cci ma have to be either buy or sell or you get the red histogram(flat market).
Thank you.
I understand now.
D.
Re: RSI Indicators for MT4
Posted: Thu Sep 27, 2018 8:30 am
by uncle wong
Dear Mrtools
Can you smooth the RSI ( conor RSI etc..) with the attached moving average with mql4 code if possible?Thanks.
Re: RSI indicator(s)
Posted: Thu Sep 27, 2018 8:44 am
by mntiwana
uncle wong wrote: Thu Sep 27, 2018 8:30 am
Dear Mrtools
Can you smooth the RSI ( conor RSI etc..) with the attached moving average with mql4 code if possible?Thanks.
Try using rsi averages version
Re: RSI Indicators for MT4
Posted: Thu Sep 27, 2018 9:12 am
by uncle wong
I did not see the one with hull parabolic.
Re: RSI Indicators for MT4
Posted: Thu Sep 27, 2018 11:20 am
by mrtools
uncle wong wrote: Thu Sep 27, 2018 8:30 am
Dear Mrtools
Can you smooth the RSI ( conor RSI etc..) with the attached moving average with mql4 code if possible?Thanks.
Try this one.