Page 182 of 2170

Re: MT4 Indicator requests and ideas

Posted: Fri Jul 28, 2017 8:03 pm
by mladen
Rakiura wrote: Fri Jul 28, 2017 7:37 pm

Mr Tools

Would you be so kind as to create a modified version of this indicator that only colours the histogram green/red when the RSI is above the upper (red)/below the lower (green) Dynamic Zone Lines?

Thanks
Rakiura
Change line 170 from this :

Code: Select all

      trend[i]  = (i<Bars-1) ? (rsi[i]>sli[i]) ? 1 : (rsi[i]<bli[i]) ? -1 : trend[i+1] : 0;
to this :

Code: Select all

      trend[i]  = (i<Bars-1) ? (rsi[i]>sli[i]) ? 1 : (rsi[i]<bli[i]) ? -1 : 0: 0;

Re: MT4 Indicator requests and ideas

Posted: Fri Jul 28, 2017 10:22 pm
by salexes
mrtools wrote: Fri Jul 28, 2017 9:54 am

Salexes, found this version made by Mladen, made it user friendly.
Thanks a lot, this is really usefull!

Re: MT4 Indicator requests and ideas

Posted: Sat Jul 29, 2017 12:10 pm
by Rakiura
mladen wrote: Fri Jul 28, 2017 8:03 pm

Change line 170 from this :

Code: Select all

      trend[i]  = (i<Bars-1) ? (rsi[i]>sli[i]) ? 1 : (rsi[i]<bli[i]) ? -1 : trend[i+1] : 0;
to this :

Code: Select all

      trend[i]  = (i<Bars-1) ? (rsi[i]>sli[i]) ? 1 : (rsi[i]<bli[i]) ? -1 : 0: 0;
Thank you for your help mladen.

Re: MT4 Indicator requests and ideas

Posted: Sat Jul 29, 2017 6:28 pm
by mladen
Rakiura wrote: Sat Jul 29, 2017 12:10 pm

Thank you for your help mladen.
Happy trading :)

Re: MT4 Indicator requests and ideas

Posted: Sat Jul 29, 2017 8:04 pm
by Nurlan Karimov
Mrtools!
Could you
a) add the arrows to all the alerts (slope change and levels crosses)
с) highlight sloping candles (make thiner) in this indicator

Re: MT4 Indicator requests and ideas

Posted: Sat Jul 29, 2017 10:03 pm
by salexes
Does someone has a "mini chart" indicator (if possible with the mq4 file)

I am searching for an indicator that displays minimized charts of any symbol from any timeframe on the chart which I currently have open.

regards,
salexes

Re: MT4 Indicator requests and ideas

Posted: Sat Jul 29, 2017 10:37 pm
by pacois
salexes wrote: Sat Jul 29, 2017 10:03 pm Does someone has a "mini chart" indicator (if possible with the mq4 file)

I am searching for an indicator that displays minimized charts of any symbol from any timeframe on the chart which I currently have open.

regards,
salexes

Re: MT4 Indicator requests and ideas

Posted: Sat Jul 29, 2017 10:54 pm
by Sanni123
Hi
Would members recommend a indicator which shows increase strength like adx or similar for M1, Ideally MTF indicator
Thanks

Re: MT4 Indicator requests and ideas

Posted: Sun Jul 30, 2017 1:37 am
by mrtools
Nurlan Karimov wrote: Sat Jul 29, 2017 8:04 pm Mrtools!
Could you
a) add the arrows to all the alerts (slope change and levels crosses)
с) highlight sloping candles (make thiner) in this indicator
Nurlan, try this one.

Re: MT4 Indicator requests and ideas

Posted: Sun Jul 30, 2017 5:00 am
by Nurlan Karimov
Super Mrtols!
Thankee you for your help !!!