Re: MT4 Indicator requests and ideas

3881
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

3886
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.
These users thanked the author mrtools for the post (total 5):
AlexLoco, talaate, Zelias, Antonio, Jedidiah


Who is online

Users browsing this forum: Abdi, Ahrefs [Bot], bbookgenius, Bing [Bot], DotNetDotCom [Bot], Facebook [Crawler], Jimmy, kvak, Majestic-12 [Bot], muhammadFarooq2k20, whiteadrian23, Yandex [Bot] and 117 guests