Page 249 of 2170

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 8:10 am
by mrtools
yuhu wrote: Fri Nov 17, 2017 7:20 am hi all, to answer my own question here: viewtopic.php?p=1295366004#p1295366004

i dont think it repaints but sometimes the bar can have both red and green bar - which it shouldnt - as seen by the screenshot below:

anyone can take a look at the code and fix it please?

Many thanks in advance
YFX
YFX maybe this version?

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 8:37 am
by yuhu
mrtools wrote: Fri Nov 17, 2017 8:10 am

YFX maybe this version?
Thank you very much MrTools - i think it does the job :) Appreciate it

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 1:48 pm
by Masshu
mrtools wrote: Fri Nov 17, 2017 7:25 am

There's one here viewtopic.php?p=1295362422#p1295362422
Thank you mrtools :D

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 3:01 pm
by sal
hi experts :)
possible to develop an indicator based on the candlestick pattern as posted in below link . post #304
viewtopic.php?f=578267&t=8472691&start=300 (i wrongly posted in this link).
thanks in advance.

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 4:33 pm
by Kiko12
mrtools wrote: Fri Nov 17, 2017 7:21 am

Made this version.
Thank you so many, mrtools

Kiko

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 7:41 pm
by moey_dw
Thank you Mr. Tools

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 17, 2017 10:26 pm
by Fresh_Prince
Mladen, do we have this your indi for MT4? Ehlers Inverse Fisher Transform

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 18, 2017 2:07 am
by eda236
Sir,
Please can this be made for MT4? Thanks in advance.

The Code
========
//parameters :
//percent = 1
//mainperiod = 100
//signalperiod = 7

once ssMA = close
MA = TriangularAverage[mainperiod](close)

if(MA > ssMA + (MA/100)*percent) THEN
ssMA = MA
ELSIF (MA < ssMA - (MA/100)*percent) THEN
ssMA = MA
ELSE
ssMA = ssMA
ENDIF

signalLine = average[signalperiod](close)
linedraw = signalLine - ssMA

RETURN linedraw as "scalp line", 0 as "center line"

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 18, 2017 3:56 am
by mrtools
Fresh_Prince wrote: Fri Nov 17, 2017 10:26 pm Mladen, do we have this your indi for MT4? Ehlers Inverse Fisher Transform
Think this should be it.

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 18, 2017 10:27 pm
by talaate
Hi mrtools
would you convert this indicator into hist
Thanks