Re: Supertrend indicators for MT4
Posted: Sun Nov 13, 2022 8:36 pm

Nice!
What a good indicator Kvak thank you man. Does a better job at forecasting ranging markets than a lot of other codes too!
Hi KVAK.
Hello, Iam not at home, but on this picture is on chart and subwindow (mountains) histo of supertrend default settings and symbol changer. but if you want it, I post it, when I will back....Coolcrow wrote: Wed Nov 16, 2022 6:55 pm Hi KVAK.
Is it possible to share your template and other indicators used in this? I'm having a bit of a problem loading single ex4 files because of having too many indicators on my folder and sorting them out to delete the ones that I don't need would take like half a day.
Here is template.Coolcrow wrote: Wed Nov 16, 2022 6:55 pm Hi KVAK.
Is it possible to share your template and other indicators used in this? I'm having a bit of a problem loading single ex4 files because of having too many indicators on my folder and sorting them out to delete the ones that I don't need would take like half a day.
Hi Kvak. Do you have NRP version of this indy, because it repaints.
Hmm, where does it repaint? What is your settings?etrebor wrote: Mon Dec 12, 2022 11:44 pm Hi Kvak. Do you have NRP version of this indy, because it repaints.
Thank in advance!
Code: Select all
//@version=2
study("Supertrend Filter",overlay=true)
//
Pd=input(200)
Factor=input(0.9)
//
P = pow(Pd,2)
a = 2/(P+1)
d = abs(close - nz(Tsl[0],hl2))
t = a*d+(1-a)*nz(t[1],d)
src = Factor*nz(Tsl[0],hl2) + (1-Factor)*close
Up=nz(Tsl[0],hl2)-t
Dn=nz(Tsl[0],hl2)+t
//
TrendUp=src[1]>TrendUp[1]? max(Up,TrendUp[1]) : Up
TrendDown=src[1]<TrendDown[1]? min(Dn,TrendDown[1]) : Dn
//
Trend = src > TrendDown[1] ? 1: src< TrendUp[1]? -1: nz(Trend[1],1)
Tsl = Trend==1? TrendDown : TrendUp
css = Tsl > Tsl[1] ? #0080FF : Tsl < Tsl[1] ? #FF0040 : na
plot(Tsl,color=fixnan(css),transp=0)