
Re: Supertrend indicators for MT4
332Nice!
- These users thanked the author josi for the post (total 2):
- kvak, Jackson Doh
Re: Supertrend indicators for MT4
333What a good indicator Kvak thank you man. Does a better job at forecasting ranging markets than a lot of other codes too!
I wish I had something like this when I first started trading.
- These users thanked the author ChuChu Rocket for the post (total 2):
- kvak, RodrigoRT7
Re: Supertrend indicators for MT4
335Hi 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.
Re: Supertrend indicators for MT4
336Hello, 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.
Re: Supertrend indicators for MT4
337Here 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.
All is default settings.
- These users thanked the author kvak for the post (total 3):
- Jedidiah, Coolcrow, Alphonse91
Re: Supertrend indicators for MT4
338Hi Kvak. Do you have NRP version of this indy, because it repaints.
Thank in advance!
Re: Supertrend indicators for MT4
339Hmm, 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!
Re: Supertrend indicators for MT4
340Supertrend Filter by alexgrover (Alex Grover)
https://www.tradingview.com/script/2raJ ... nd-Filter/
I am in the process of converting the Supertrend Filter (Using recursion ver) pinescript to MQL4.
But there is a part I don't understand.
If anyone is familiar with PineScript, could you give me some advice?
What is this expression " Tsl[0] " translated into MQL4?
Or can you give me a simple way to find out the value of " Tsl[0] "?
(Does "Tsl[0]" means current Tsl value?? But it has not been calculated. )
Thank you in advance.
I may have made a fundamental mistake.
I will re-upload Attached file once the problem is resolved. (2022/12/21)
https://www.tradingview.com/script/2raJ ... nd-Filter/
I am in the process of converting the Supertrend Filter (Using recursion ver) pinescript to MQL4.
But there is a part I don't understand.
If anyone is familiar with PineScript, could you give me some advice?
What is this expression " Tsl[0] " translated into MQL4?
Or can you give me a simple way to find out the value of " Tsl[0] "?
(Does "Tsl[0]" means current Tsl value?? But it has not been calculated. )
Thank you in advance.
I may have made a fundamental mistake.
I will re-upload Attached file once the problem is resolved. (2022/12/21)
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)