Page 28 of 44

Re: Supertrend indicators for MT4

Posted: Thu May 12, 2022 1:12 pm
by nishikafrancis2014
kvak wrote: Thu May 12, 2022 8:54 am Hello?
Can you be more specific? I checked alerts and some alerts are pop-up.
Also histo_width are available in menu.......
BTW a made new one with auto bars width and add alerts for all ST separately...
Image
yes this one is super mr kvak

Re: Supertrend indicators for MT4

Posted: Fri May 13, 2022 3:11 pm
by 太虚一毫
kvak wrote: Thu May 12, 2022 8:54 am Hello?
Can you be more specific? I checked alerts and some alerts are pop-up.
Also histo_width are available in menu.......
BTW a made new one with auto bars width and add alerts for all ST separately...
Image

This is three trend lines integrated with the teacher's masterpiece DSL ocn nma fast 2 BT (mtf) 1.3 indicators (HIgh, Close, Low). :thumbup:

Expect the teacher to use (HIgh, Close, Low) to make a Triple DSL ocn nma fast indicator. I believe it's fun!

Re: Supertrend indicators for MT4

Posted: Sat May 21, 2022 2:31 am
by mrtools
pfxi wrote: Fri May 20, 2022 3:40 pm Hi mrtools,

Please Added a ON/OFF button. Thank's
Added the ON/OFF button.

Re: Supertrend indicators for MT4

Posted: Mon May 23, 2022 12:16 am
by Ganesh
Hi, mrtools. kindly add standard error and standard deviation to this attached histo version in addition to ATR

Re: Supertrend indicators for MT4

Posted: Mon May 23, 2022 1:49 am
by mrtools
Ganesh wrote: Mon May 23, 2022 12:16 am Hi, mrtools. kindly add standard error and standard deviation to this attached histo version in addition to ATR
Try.

Re: Supertrend indicators for MT4

Posted: Mon May 23, 2022 11:32 am
by Ganesh
mrtools wrote: Thu Jun 10, 2021 3:45 amTry.
I Create an EA for supertrend new format made by mrtools. BUT EA -not working properly. I request mrtools to rectify the same

Re: Supertrend indicators for MT4

Posted: Mon May 23, 2022 2:36 pm
by mrtools
Ganesh wrote: Mon May 23, 2022 11:32 am I Create an EA for supertrend new format made by mrtools. BUT EA -not working properly. I request mrtools to rectify the same
Try now. Tried a back test on 1 minute chart using 35 period Adxvma with ha median price not too bad.

Re: Supertrend indicators for MT4

Posted: Mon May 23, 2022 3:01 pm
by 太虚一毫
mrtools wrote: Mon May 23, 2022 2:36 pm Try now. Tried a back test on 1 minute chart using 35 period Adxvma with ha median price not too bad.
Image
it is good!

I think DSL ocn nma fast is better than SuperTrend. I believe that making EA with DSL ocn nma fast will be profitable! :thumbup:

Re: Supertrend indicators for MT4

Posted: Thu May 26, 2022 2:57 am
by mrtools
thomdel wrote: Wed May 25, 2022 11:19 pm @ mrtools

Respected Sir,

Request you to Please Add Button to :--- " SuperTrend nrp new format (mtf + arrows + alerts + candles) "
( This is your Indi and has all features/Options. Only Button is missing)

Reason for request :
There are other Various Supertrend Indis with button but they miss your options.


Thanks for your Time, Efforts, Support, Generosity.
Thanks Again & Again.
Button added.

Re: Supertrend indicators for MT4

Posted: Sat Jun 18, 2022 7:14 am
by mrtools
PumbaPLS wrote: Sat Jun 18, 2022 12:15 am Superichi Indicator:

This indicator is a modification of the popular Ichimoku indicator using the equally popular Supertrend indicator as its core, thus no longer entirely relying on calculations done over a fixed window size but instead relying on the average true range and the trend detection method offered by the Supertrend.

If someone with his magical hands could convert it to MT4.. that would be very interesting!

Code: Select all

// This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/
// © LuxAlgo

//@version=5
indicator("SuperIchi [LUX]",'SuperIchi [LUX]',overlay=true,max_lines_count=500)
tenkan_len  = input(9,'Tenkan          ',inline='tenkan')
tenkan_mult = input(2.,'',inline='tenkan')

kijun_len   = input(26,'Kijun             ',inline='kijun')
kijun_mult  = input(4.,'',inline='kijun')

spanB_len   = input(52,'Senkou Span B ',inline='span')
spanB_mult  = input(6.,'',inline='span')

offset      = input(26,'Displacement')
//------------------------------------------------------------------------------
avg(src,length,mult)=>
    atr = ta.atr(length)*mult
    up = hl2 + atr
    dn = hl2 - atr
    upper = 0.,lower = 0.
    upper := src[1] < upper[1] ? math.min(up,upper[1]) : up
    lower := src[1] > lower[1] ? math.max(dn,lower[1]) : dn
    
    os = 0,max = 0.,min = 0.
    os := src > upper ? 1 : src < lower ? 0 : os[1]
    spt = os == 1 ? lower : upper
    max := ta.cross(src,spt) ? math.max(src,max[1]) : os == 1 ? math.max(src,max[1]) : spt
    min := ta.cross(src,spt) ? math.min(src,min[1]) : os == 0 ? math.min(src,min[1]) : spt
    math.avg(max,min)
//------------------------------------------------------------------------------
tenkan = avg(close,tenkan_len,tenkan_mult)
kijun = avg(close,kijun_len,kijun_mult)

senkouA = math.avg(kijun,tenkan)
senkouB = avg(close,spanB_len,spanB_mult)
//------------------------------------------------------------------------------
tenkan_css = #2157f3
kijun_css = #ff5d00

cloud_a = color.new(color.teal,80)
cloud_b = color.new(color.red,80)

chikou_css = #7b1fa2

plot(tenkan,'Tenkan-Sen',tenkan_css)
plot(kijun,'Kijun-Sen',kijun_css)

plot(ta.crossover(tenkan,kijun) ? kijun : na,'Crossover',#2157f3,3,plot.style_circles)
plot(ta.crossunder(tenkan,kijun) ? kijun : na,'Crossunder',#ff5d00,3,plot.style_circles)

A = plot(senkouA,'Senkou Span A',na,offset=offset-1)
B = plot(senkouB,'Senkou Span B',na,offset=offset-1)
fill(A,B,senkouA > senkouB ? cloud_a : cloud_b)

plot(close,'Chikou',chikou_css,offset=-offset+1,display=display.none)
Image
Superichi indicator for MT4

Thanks for the idea, think this version is kinda close to the tradeview one, except you can use standard deviation too, but to me atr is way better for this.

PS: For the template used in our Daily Downloads post, please see here: Superichi MT4 template.