YFX maybe this version?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
Re: MT4 Indicator requests and ideas
2482Thank you very much MrTools - i think it does the job

Re: MT4 Indicator requests and ideas
2484hi 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.

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.
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: MT4 Indicator requests and ideas
2486Thank you Mr. Tools
Official Forex-station GIF animator at your service 
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com
Re: MT4 Indicator requests and ideas
2487Mladen, do we have this your indi for MT4? Ehlers Inverse Fisher Transform
Re: MT4 Indicator requests and ideas
2488Sir,
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"
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
2489Think this should be it.Fresh_Prince wrote: Fri Nov 17, 2017 10:26 pm Mladen, do we have this your indi for MT4? Ehlers Inverse Fisher Transform
Re: MT4 Indicator requests and ideas
2490Hi mrtools
would you convert this indicator into hist
Thanks
would you convert this indicator into hist
Thanks