Page 194 of 2170

Re: MT4 Indicator requests and ideas

Posted: Tue Aug 15, 2017 6:24 pm
by mladen
friend4you wrote: Tue Aug 15, 2017 2:39 am Dear Coders!
Can you make a mq5 or ex5 file out of mostly your indicators, I attached, please?
Hull ma or similar may exist already.
atr bands.mq4
Mladens averages - mtf - alerts 8.3 - atr bands.ex4 and hull variations.ex4

atr bands is for me important, similar and easy to translate, I think.
Thanks.
Use starc bands for "atr bands"

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 16, 2017 2:34 am
by armchairtycoon
hi mladen and mrtools , able to convert holt to mtf?

thank you so much

looks better than macd?

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 16, 2017 8:37 am
by mrtools
armchairtycoon wrote: Wed Aug 16, 2017 2:34 am .DE30CashM5.png

hi mladen and mrtools , able to convert holt to mtf?

thank you so much

looks better than macd?

Holt_double_exponential_smoothing_trend.mq4
Armchairtycoon, added mtf.

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 16, 2017 7:54 pm
by friend4you
Thanks, it's similar, but maybe you can can at least post a mt5 version of
averages - mtf - alerts 8.3 - atr bands.ex4

Is it true, that broker have to pay more fee, if they prefer mt4 instead mt5?

die 4 € kommission sind immer noch 10x höher wie die von institutionen.

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 16, 2017 8:01 pm
by mladen
friend4you wrote: Wed Aug 16, 2017 7:54 pm Thanks, it's similar, but maybe you can can at least post a mt5 version of
averages - mtf - alerts 8.3 - atr bands.ex4

Is it true, that broker have to pay more fee, if they prefer mt4 instead mt5?

die 4 € kommission sind immer noch 10x höher wie die von institutionen.
Please read this post (and the post linked to it) : https://www.forex-station.com/viewtopic ... 1295361996

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 17, 2017 2:46 am
by Digowl
mntiwana wrote: Mon Aug 14, 2017 7:08 pm
If you see the second parameter in indi property,there is filtering TF - also try observing exact,there it printing an extra small arrow in next empty space ahead of current running price according to the filtering TF (numbers of bars to confirm) you applied - you needs some learning and experimenting to understand the logic used in this indicator
Really it is very complicated to understand, I can not filter the false signals.
Could you add alert to these indicators?

@edit: Do you have any of these indicators in the video?
https://www.youtube.com/channel/UCsERGm ... shelf_id=0

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 17, 2017 3:26 am
by Pava
I heard holy grail indicator filters false signals....

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 17, 2017 6:20 am
by shiva12
Dear mladen and mr Tools , do we have same code with MT4

MyBoll = (close[0] - BollingerDown)/(BollingerUp - BollingerDown)*100
MyBoll2 = (high[0] - BollingerDown)/(BollingerUp - BollingerDown)*100
MyBoll3 = (Low[0] - BollingerDown)/(BollingerUp - BollingerDown)*100

X = (myBoll2[0] + myBoll2[1] + myBoll2[2]) /3
Y = (myBoll3[0] + myBoll3[1] + myBoll3[2]) /3
rge = averagetruerange[10](close)

if MyBoll >= 50 THEN
upBoll = X > 100
downBOLL = 0
ELSE
upBOLL = 0
downBOLL = Y < 0
ENDIF

If upBOLL[1] > 0 and upBOLL = 0 then
DRAWARROWDOWN(barindex[1],high[1]+rge)coloured(249,0,224)
endif

if downboll[1] > 0 and downboll = 0 then
DRAWARROWUP(barindex[1],low[1]-rge)coloured(0,249,45)
endif

RETURN



thanks and regards

Re: MT4 Indicator requests and ideas

Posted: Fri Aug 18, 2017 8:29 am
by uncle wong
Dear Moderators,Mladen,

Is it possible for you to code the bekow one and/or two formulas in below?

1- (((((delay(close, 20) - delay(close, 10)) / 10) - ((delay(close, 10) - close) / 10)) < (-1 * 0.1)) ? 1 : ((-1 * 1) * (close - delay(close, 1))))
2- ((-1 * ((low - close) * (open^5))) / ((low - high) * (close^5)))

Delay(x, d) = value of x d days ago

Re: MT4 Indicator requests and ideas

Posted: Fri Aug 18, 2017 10:28 am
by Digowl
Does anyone have any of these indicators?
https://www.youtube.com/channel/UCsERGm ... shelf_id=0