Re: Supertrend indicators for MT4

335
kvak wrote: Sun Nov 13, 2022 11:37 am Supertrend in mountains histogram....
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

336
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.
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....
These users thanked the author kvak for the post:
Coolcrow

Re: Supertrend indicators for MT4

337
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.
All is default settings.
These users thanked the author kvak for the post (total 3):
Jedidiah, Coolcrow, Alphonse91

Re: Supertrend indicators for MT4

340
Supertrend 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)

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)
These users thanked the author yoake for the post:
Jedidiah


Who is online

Users browsing this forum: alimpe2000, Bing [Bot], friend4you, PaperLi [Bot], Ruby [Bot], Seznam [Bot], thomdel, vvFish and 72 guests