Page 298 of 323

Re: RSI Indicators for MT4

Posted: Tue Dec 10, 2024 9:14 am
by COGSY
fixed the indicator,

Updated

Re: RSI Indicators for MT4

Posted: Tue Dec 10, 2024 11:36 pm
by COGSY
Seemed the last update was doing every tick so this would slow down MT4.

Fixed again.

Re: RSI Indicators for MT4

Posted: Wed Dec 11, 2024 11:39 pm
by mrtools
vzulaks wrote: Wed Dec 11, 2024 11:03 pm Dear MR Tools and Mr. Kvak,

I came across an RSI indicator posted by Jimmy a few years ago. Could you kindly add two MA lines to it, with the following methods: MA1 Method: EMA and MA2 Method: WMA, along with an option to toggle them on and off on the chart?

I sincerely thank both of you and Have a wonderful day!
Hello, added 2 adjustable ma's.

Re: RSI Indicators for MT4

Posted: Thu Dec 12, 2024 1:33 am
by vzulaks
mrtools wrote: Wed Dec 11, 2024 11:39 pm Hello, added 2 adjustable ma's.
My deepest thanks for your help. If it's possible to add a toggle button and options to adjust the coordinates, that would be truly wonderful!

Re: RSI Indicators for MT4

Posted: Thu Dec 12, 2024 4:57 am
by mrtools
vzulaks wrote: Thu Dec 12, 2024 1:33 am My deepest thanks for your help. If it's possible to add a toggle button and options to adjust the coordinates, that would be truly wonderful!
Can add a button but only in ex4, if that is okay let me know, otherwise maybe someone else can add the button.

Re: RSI Indicators for MT4

Posted: Thu Dec 12, 2024 11:16 am
by vzulaks
mrtools wrote: Thu Dec 12, 2024 4:57 am Can add a button but only in ex4, if that is okay let me know, otherwise maybe someone else can add the button.
Yes, it’s okay πŸ‘Œ πŸ˜ƒ

Thank you so much!

Re: RSI Indicators for MT4

Posted: Thu Dec 12, 2024 12:16 pm
by mrtools
vzulaks wrote: Thu Dec 12, 2024 11:16 am Yes, it’s okay πŸ‘Œ πŸ˜ƒ

Thank you so much!
Added the on/off button.

Re: RSI Indicators for MT4

Posted: Thu Dec 12, 2024 1:20 pm
by vzulaks
mrtools wrote: Thu Dec 12, 2024 12:16 pm Added the on/off button.
Thank you so much!

Re: RSI Indicators for MT4

Posted: Sun Dec 15, 2024 10:54 pm
by mrtools
Intrest 1 wrote: Sat Dec 14, 2024 8:00 pm Hello.
Could respected coders please make the Laguerre indicator recalculated using RoC. Laguerre RoC could be with faster signals
Hello, found this old version.

Re: RSI Indicators for MT4

Posted: Tue Dec 17, 2024 10:55 pm
by COGSY
RSI Final update:

I got my programmer to take a look, Chatgpt has trouble with very fine details, we corrected the problem in 2 minutes.

He changed this:

for (i = startBar; i >=0; i--)


To this:
for (i = startBar; i > 0; i--)

One = symbol, the indicator was calculating ever tick, this changes that to every candle close