Attachments forums

List of attachments posted on this forum.


All files on forums: 154109

Re: MT4 Indicator requests and ideas

robcole, Tue Jul 24, 2018 7:17 pm

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
All files in topic