Page 389 of 2170

Re: MT4 Indicator requests and ideas

Posted: Tue Jul 24, 2018 7:19 pm
by robcole
dear mladen and mrtools,

i've found a very intresting new indicator at another site and i want to ask if ist possible to Code this for MT4?
here is a Picture and the Code for ProRealTime

Code: Select all

//PRC_multipleZscore analysis | indicator
//26.06.2018
//Nicolas @ www.prorealcode.com
//Sharing ProRealTime knowledge

//--- settings 
period = 20
MAtype = 1
definition = 100
//--- end of settings 

globalz=0

for i = 1 to definition do
 avg = average[period*i,MAtype](customclose)
 st = std[period*i](customclose)

 zscore = (customclose-avg)/st

 if zscore<0 then
  r=255-(30*i)
  g=0
  drawtext(".",barindex,zscore,Dialog,Bold,20) coloured(max(r,100),g,0)
 else
  r=0
  g=255-(30*i)
  drawtext(".",barindex,zscore,Dialog,Bold,20) coloured(r,max(g,100),0)
 endif

 globalz=(globalz+zscore*i)/definition

next
smooth=average[period](globalz)


RETURN 0 coloured(100,100,100) style(dottedline), 2 coloured(100,100,100) style(dottedline), -2 coloured(100,100,100) style(dottedline), 4 coloured(100,100,100) style(dottedline), -4 coloured(100,100,100) style(dottedline), smooth
further Information can be found at
https://www.prorealcode.com/prorealtime ... -analysis/

thx for your replay!
greetings robcole

Re: MT4 Indicator requests and ideas

Posted: Tue Jul 24, 2018 10:59 pm
by AlexLoco
mrtools wrote: Sun Jul 22, 2018 2:06 am
Made this one.
Very good indicator... thank you mr.tools... can you make it mtf?

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 12:14 am
by gannhilo
Cladi39 wrote: Tue Apr 04, 2017 2:59 pm

Thanks for share, can you post the indicators pls?

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 2:02 am
by talaate
hi mrtools
would you made it Histo version, with keeping arrows,
by the way It was published by you as ex4
Thanks

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 2:34 am
by Naughty 77
Dear Mr Tools/Coders

Would you kindly please add a smoothing option to this indicator , would be most grateful.

Best regards

Naughty 77

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 3:40 am
by mrtools
Zelias wrote: Mon Jul 23, 2018 7:18 pm

Hi MrTools,

Thanks a lot for updating this indicator. Unfortunately, when I load it on the chart, it slows my MT4 tremendeously - is there anything that could be done about it or a lighter version I could use (that has MTF for the averages ribbon)?
Found a bug should help some.

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 3:42 am
by mrtools
AlexLoco wrote: Tue Jul 24, 2018 10:59 pm
Added mtf

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 3:46 am
by mrtools
talaate wrote: Wed Jul 25, 2018 2:02 am hi mrtools
would you made it Histo version, with keeping arrows,
by the way It was published by you as ex4

Pdf Ma (mtf + alerts + fl's).ex4
Thanks
Running out of time will work on it later today.

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 3:49 am
by mrtools
Naughty 77 wrote: Wed Jul 25, 2018 2:34 am Dear Mr Tools/Coders

Would you kindly please add a smoothing option to this indicator , would be most grateful.

Best regards

Naughty 77
Not sure what you mean velocity is already a very smooth momentum.

Re: MT4 Indicator requests and ideas

Posted: Wed Jul 25, 2018 4:52 am
by Naughty 77
Dear Mr Tools

Was hoping to add my own smoothing further as needed,but if not possible i understand,thank you for the advice.

Kind regards

Naughty 77