Need help indentifying indicator - page 241

 
Intrest1:
You can give the links to these indicators?

Oh sorry, forgot the links

www.forex-tsd.com/forum/exclusive/11612-helweg-stendahl-value-charts/page10#comment_1772342

For Dynamic Zones you need this .dll in the C:\...\MQL4\Libraries: www.forex-tsd.com/forum/exclusive/11725-dynamic-zone-indicators

 
mladen:

Oh sorry, forgot the links

www.forex-tsd.com/forum/exclusive/11612-helweg-stendahl-value-charts/page10#comment_1772342

For Dynamic Zones you need this .dll in the C:\...\MQL4\Libraries: www.forex-tsd.com/forum/exclusive/11725-dynamic-zone-indicators

This is my post :)
 
Thank you very much
 
But the indicator at the link is not started. The message in the log that it was renamed
 
Intrest1:
But the indicator at the link is not started. The message in the log that it was renamed
The correct name is Dynamic zone Value chart averages arrows + alerts
 
krelian99:
The correct name is Dynamic zone Value chart averages arrows + alerts
Or this one https://www.mql5.com/en/forum/179806/page16 can be used
 
Intrest1:
Hello, where can I find the indicators of this type? Thank you

Hi Intrest1

I think this is almost or maybe the same indicator you are looking for...


 
Intrest1:
Hello, where can I find the indicators of this type? Thank you
Or here : https://www.mql5.com/en/forum/179806
 

Where can I find such an indicator? Thank you

 

 
Intrest1:

Where can I find such an indicator? Thank you

 

Got the code for this indicator online, but don't know what language is. Maybe it will help to obtain this file for MT4?
study(shorttitle = "SQZMOM_LB", title="Squeeze Momentum Indicator", overlay=false)

length = input(20, title="BB Length")
mult = input(2.0,title="BB MultFactor")
lengthKC=input(20, title="KC Length")
multKC = input(1.5, title="KC MultFactor")

useTrueRange = input(true, title="Use TrueRange (KC)", type=bool)

// Calculate BB
source = close
basis = sma(source, length)
dev = multKC * stdev(source, length)
upperBB = basis + dev
lowerBB = basis - dev

// Calculate KC
ma = sma(source, lengthKC)
range = useTrueRange ? tr : (high - low)
rangema = sma(range, lengthKC)
upperKC = ma + rangema * multKC
lowerKC = ma - rangema * multKC

sqzOn  = (lowerBB > lowerKC) and (upperBB < upperKC)
sqzOff = (lowerBB < lowerKC) and (upperBB > upperKC)
noSqz  = (sqzOn == false) and (sqzOff == false)

val = linreg(source  -  avg(avg(highest(high, lengthKC), lowest(low, lengthKC)),sma(close,lengthKC)), 
            lengthKC,0)

bcolor = iff( val > 0, 
            iff( val > nz(val[1]), lime, green),
            iff( val < nz(val[1]), red, maroon))
scolor = noSqz ? blue : sqzOn ? black : gray 
plot(val, color=bcolor, style=histogram, linewidth=4)
plot(0, color=scolor, style=cross, linewidth=2)
Reason: