Page 299 of 323

Re: RSI Indicators for MT4

Posted: Wed Dec 18, 2024 11:34 pm
by Intrest 1
mrtools wrote: Sun Dec 15, 2024 10:54 pm Hello, found this old version.
Thank you.
Could you display the RoC period in the settings? Apparently it is inside the code by default and I would like to be able to adjust it

Re: RSI Indicators for MT4

Posted: Thu Dec 19, 2024 2:34 am
by mrtools
Intrest 1 wrote: Wed Dec 18, 2024 11:34 pm Thank you.
Could you display the RoC period in the settings? Apparently it is inside the code by default and I would like to be able to adjust it
"vPeriod" is the RoC period.

Re: RSI Indicators for MT4

Posted: Fri Dec 20, 2024 12:45 am
by FredericoA
COGSY wrote: Mon Dec 09, 2024 10:43 am Kind of excited guys, with CHATGPTs new update they have given us the ability to program mt4 indicators.

Here are two simple RSI functions

The first is a RSI using a BAND setup with color change when price is in the OB/OS area, I applied the smoothing factor to the RSI
ANd second

Is a Moving Average which changes color when price in relation to the RSI is in the OB/OS position.

Happy trading.

Hello everyone, is it possible to code arrows and audio alerts for Dynamic_RSI_MA indicator? Thanks in advance, good trades!

Re: RSI Indicators for MT4

Posted: Wed Jan 01, 2025 5:20 am
by mrtools
Jonex1995 wrote: Tue Dec 31, 2024 10:56 pm hello guys wish you happy new year
if any of experts got some time to add mtf and alarm to this indicator would be great
thanks in advance
Hello, added mtf and alerts.

Re: RSI Indicators for MT4

Posted: Wed Jan 01, 2025 10:26 am
by COGSY
FredericoA wrote: Fri Dec 20, 2024 12:45 am Hello everyone, is it possible to code arrows and audio alerts for Dynamic_RSI_MA indicator? Thanks in advance, good trades!
Inputs

Wingdings code up arrow
Wingdings code down arrow

Here is the code for each symbol, 233 and 234 for the arrows but the link below shows which you can choose

https://docs.mql4.com/constants/objectc ... /wingdings

Size of arrow - 4
Distance in points from the HIGH for sell and LOW for BUY - 250 points of price
Color up arrow
Color down arrow

RSI period
Band Period
Deviation from the MA
MA period
0=SMA choose a MA applied
Smoothing function
ENable Audio alerts
Enable Arrows


Let me know if you need anything else

Re: RSI Indicators for MT4

Posted: Wed Jan 01, 2025 10:37 am
by mrtools
mrtools wrote: Wed Jan 01, 2025 5:20 am Hello, added mtf and alerts.
Hello, changed a few things, seems better, but try.

Re: RSI Indicators for MT4

Posted: Wed Jan 01, 2025 7:41 pm
by Jonex1995
mrtools wrote: Wed Jan 01, 2025 10:37 am Hello, changed a few things, seems better, but try.
thank you for your effort but only rsi and rsx works fine for me

Re: RSI Indicators for MT4

Posted: Thu Jan 02, 2025 5:56 am
by mrtools
Jonex1995 wrote: Wed Jan 01, 2025 7:41 pm thank you for your effort but only rsi and rsx works fine for me
RSI Summed with Multi-timeframe & Alerts

Last try, in more ways than one :) !

ps) on the slower rsi's you may have to adjust the periods down a bit.

What is the RSI Summed indicator?

This code is based on Mladen's indicator.

The RSI "Summed" evaluates the NNN (next-nearest-neighbour) RSI values defined by the periods parameter to determine whether all NNN RSI values exceed or fall below a specified threshold. If all values are above the threshold, it indicates an upward state; conversely, if all values are below the designated low level, it indicates a downward state. If the values are mixed, the indicator reflects a Neutral state.

It can be contended that this state could be determined by examining only the slowest RSI; however, this is not always the case, as it significantly depends on the periods selected. Therefore, the indicator will assess all the specified RSI values.

The periods can be designated as a list separated by colons. The default setting is 14;15;16;17;18;19;20;21.

PS: For additional indicators, please see:

Re: RSI Indicators for MT4

Posted: Thu Jan 02, 2025 7:25 pm
by Jonex1995
mrtools wrote: Thu Jan 02, 2025 5:56 am Last try, in more ways than one :) !

ps) on the slower rsi's you may have to adjust the periods down a bit.
Thank you for your hard work it still same proplem but now it more easier with alarm so thank you 😁

Re: RSI Indicators for MT4

Posted: Fri Jan 03, 2025 5:11 am
by kvak
Laguerre RSI with Gamma in Multi-timeframe mode

Laguerre rsi with Gamma in MTF mode as request.

Gamma is a damping factor that influences how much the prices are smoothed out. When gamma is larger, the Laguerre RSI gets smoother, but it also becomes more delayed.