fixed the indicator,
Updated
Re: RSI Indicators for MT4
2972Seemed the last update was doing every tick so this would slow down MT4.
Fixed again.
Fixed again.
Re: RSI Indicators for MT4
2973Hello, added 2 adjustable ma's.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!
Re: RSI Indicators for MT4
2974My 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!
VzuLaks
: People never plan for failure. They simply fail in planning for success!Re: RSI Indicators for MT4
2975Can add a button but only in ex4, if that is okay let me know, otherwise maybe someone else can add the button.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!
Re: RSI Indicators for MT4
2976Yes, it’s okaymrtools 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.
Thank you so much!
VzuLaks
: People never plan for failure. They simply fail in planning for success!Re: RSI Indicators for MT4
2979Hello, found this old version.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
Re: RSI Indicators for MT4
2980RSI 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
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