Page 200 of 2047

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 30, 2017 4:00 am
by pacois
friend4you wrote: Fri Aug 25, 2017 10:38 pm Dear Coders!
This free indicators produces some errors in Metaeditor.
Maybe someone can add the missing arrays etc.
Or someone has a similar indicator, which draws a x seconds chart on another from the ticks.
Thanks a lot.

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 30, 2017 4:26 am
by tradersprofit
Thanks for putting me through Shreck, I will make use of the thread now...

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 30, 2017 4:30 am
by mladen
uncle wong wrote: Sun Aug 27, 2017 6:12 am Mladen

Is this codeable in mql4?

Code: Select all


//YANG-ZHANG extention of the GARMAN-KLASS volatility
p=22
corr=sqrt(p/(p-1))

gkyzoc=log(open/close[1])*log(open/close[1])
gkyzhl=0.5*log(high/low)*log(high/low)
gkyzco=(2*log(2)-1)*log(close/open)*log(close/open)

gkyz=sqrt(summation[p](gkyzoc+gkyzhl-gkyzco))*sqrt(256/p)

gkyzvolatility=gkyz*corr

return gkyzvolatility as "Garman-Klass Yang-Zhang"

//YANG-ZHANG extention of the GARMAN-KLASS volatility
p=22
corr=sqrt(p/(p-1))
 
gkyzoc=log(open/close[1])*log(open/close[1])
gkyzhl=0.5*log(high/low)*log(high/low)
gkyzco=(2*log(2)-1)*log(close/open)*log(close/open)
 
gkyz=sqrt(summation[p](gkyzoc+gkyzhl-gkyzco))*sqrt(256/p)
 
gkyzvolatility=gkyz*corr
 
return gkyzvolatility as "Garman-Klass Yang-Zhang"
Missed the post - interesting post :)
Yes it can be done

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 30, 2017 4:34 am
by tradersprofit
Hello Mladen, mrtools, mtwanna and the rest coder in house. Please help with this indicator SHI silvertrend. It will not show on the chart until someone switch from one timeframe back to the present timeframe. Pls help fix the error, i have attached both es4 and mq4 file.Or is there any other indicator that work alike? Thanks,

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 31, 2017 2:36 am
by naveen
tradersprofit wrote: Wed Aug 30, 2017 4:34 am Hello Mladen, mrtools, mtwanna and the rest coder in house. Please help with this indicator SHI silvertrend. It will not show on the chart until someone switch from one timeframe back to the present timeframe. Pls help fix the error, i have attached both es4 and mq4 file.Or is there any other indicator that work alike? Thanks,
i am not a coder but after looking at it i feel that it only shows past points when added..even i had tried it before

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 31, 2017 5:03 am
by tradersprofit
naveen wrote: Thu Aug 31, 2017 2:36 am

i am not a coder but after looking at it i feel that it only shows past points when added..even i had tried it before
Yes it is that past point I want the coder in house to work on, to be be showing in live. And I believe they will help, thanks for your attempt.

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 31, 2017 12:09 pm
by mrtools
tradersprofit wrote: Wed Aug 30, 2017 4:34 am Hello Mladen, mrtools, mtwanna and the rest coder in house. Please help with this indicator SHI silvertrend. It will not show on the chart until someone switch from one timeframe back to the present timeframe. Pls help fix the error, i have attached both es4 and mq4 file.Or is there any other indicator that work alike? Thanks,
Shi - silvertrend repaints badly.

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 31, 2017 1:30 pm
by tradersprofit
mrtools wrote: Thu Aug 31, 2017 12:09 pm

Shi - silvertrend repaints badly.

Thanks.....

Re: MT4 Indicator requests and ideas

Posted: Fri Sep 01, 2017 1:30 pm
by robcole
Hi mladen and mrtools,

is it possible to add the dynamic zones to the attached indicator, to make it mtf and to add alerts if adjustable values (high and low) are reached? That would be very nice if its possible!

Thank you very much!

greetings robcole

Re: MT4 Indicator requests and ideas

Posted: Fri Sep 01, 2017 6:21 pm
by Snowski
mladen wrote: Wed Aug 30, 2017 4:30 am

Missed the post - interesting post :)
Yes it can be done
Excellent. Looks interesting enough to investigate and test. :)
Thanks mladen.