Page 57 of 62
Re: Jurik Smoothed Indicators for MT4
Posted: Wed May 01, 2024 8:26 pm
by Jimmy
ionone wrote: Sun Apr 28, 2024 8:43 pm
in the meantime I added a "repaint" value
mrtools wrote: Mon Apr 29, 2024 4:52 am
RSX with TMA
Try!
Thanks to Jeff & Mrtools this is a good open source code which includes a some neat features that novice coders can use as a guide for their own projects:
- Repainting vs Non-repainting eg:
- Repainting (note the minus index in the code)
if (TmaApplyTo==0)
sum += k*rsx[i-j];
else sum += k*signal[i-j];
sumw += k;
- Non-repainting (default)
if (TmaApplyTo==0)
sum += k*rsx[i+j];
else sum += k*signal[i+j];
sumw += k;
- Hidden & Classic Divergences
- Alert code
- Multi-timeframe code
- Interpolation (remove jagged steps) for MTF
Nice one

Re: Jurik Smoothed Indicators for MT4
Posted: Thu May 02, 2024 2:56 am
by Mickey Abi
mrtools wrote: Mon Apr 29, 2024 4:52 am
RSX with TMA
Try!
RSX with TMA + Divergence indicator MT4.png
1rsxBO2 (alerts).mq4
I tested this Indi.. and it seems to hangs the platform when one switches on the MTF .. Also can it get an alert for the divergence..
Thanks
Re: Jurik Smoothed Indicators for MT4
Posted: Thu May 02, 2024 4:47 am
by mrtools
Mickey Abi wrote: Thu May 02, 2024 2:56 am
I tested this Indi.. and it seems to hangs the platform when one switches on the MTF .. Also can it get an alert for the divergence..
Thanks
Posted the fixed mtf version at the original post. If you want the divergence alerts can post a version but it will have to be ex4.
Re: Jurik Smoothed Indicators for MT4
Posted: Thu May 02, 2024 6:07 pm
by Mickey Abi
mrtools wrote: Thu May 02, 2024 4:47 am
Posted the fixed mtf version at the original post. If you want the divergence alerts can post a version but it will have to be ex4.
Yeah, exe will be very fine.... thanks Mr. Toolz
Re: Jurik Smoothed Indicators for MT4
Posted: Fri May 03, 2024 2:09 am
by mrtools
Mickey Abi wrote: Thu May 02, 2024 6:07 pm
Yeah, exe will be very fine.... thanks Mr. Toolz
Added divergence alerts.
Re: Jurik Smoothed Indicators for MT4
Posted: Wed May 08, 2024 12:12 am
by bmwaddicted
mrtools wrote: Mon Apr 29, 2024 4:52 am
RSX with TMA
Try!
RSX with TMA + Divergence indicator MT4.png
Hi mrtools,
Is it possible to add also a median line to this nice indicator?
Thanks!
Re: Jurik Smoothed Indicators for MT4
Posted: Wed May 08, 2024 12:13 am
by bmwaddicted
mrtools wrote: Mon Apr 29, 2024 4:52 am
RSX with TMA
Try!
RSX with TMA + Divergence indicator MT4.png
Hi mrtools,
Is it possible to add also a median line to this nice indicator?
Thanks!
Re: Jurik Smoothed Indicators for MT4
Posted: Wed May 08, 2024 2:27 am
by mrtools
bmwaddicted wrote: Wed May 08, 2024 12:13 am
Hi mrtools,
Is it possible to add also a median line to this nice indicator?
Thanks!
It's there already, for some reason someone changed the color to none on the rsx signal line and bands median line.
Re: Jurik Smoothed Indicators for MT4
Posted: Tue Jul 30, 2024 7:19 am
by kvak
Jurik Moving Average with adjustable "Power" parameter
This is version of Jurik filter ( from TV ), with power input in menu.
Don't know if is here in our site.
Indicator have AHTF, filtering options, alerts and arrows...
Re: Jurik Smoothed Indicators for MT4
Posted: Wed Jul 31, 2024 6:02 pm
by moey_dw
kvak wrote: Tue Jul 30, 2024 7:19 am
This is version of Jurik filter ( from TV ), with power input in menu.
Don't know if is here in our site.
Indicator have AHTF, filtering options, alerts and arrows...
Power input is good and default 2.0 gives earlier signals plus allows adjustment of either standard jurik filter reaction or not being too smooth....... is it power of relative volatility this option? And thanking you for new indicator Kvak!!! If you could consider please share MQ4 with mrtoolz so he can also testing/compare to his and mladens algo to help for future co-operation?