Smart Supertrend

Smart Supertrend

Here I leave an adaptation of the supertrend indicator.
We have the cloud, which shows us the price trend according to color.
On the other hand we have the adapted version of the supertrend, which can be used as a trailstop or confirmation.

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. Madrosat • 02/12/2024 #

    Hello Ivan
    You have interesting topics on indicators , smart supertrend, optimised trend tracker, end ema9-21 , but did you have some exemples of wining strategy with this indicators.
    Congratulations

  2. Iván • 02/12/2024 #

    Hi! thanks. All of these codes are translations requested in the forum. I’ve on mind to backtest all of them.

  3. Raspete01 • 02/12/2024 #

    Buenos días Iván, estoy intentando llevar el código eliminando los colores y pasando un Backtest para sacar estadística de funcionamiento real.
    Marqué orden de compra y venta en el siguiente punto, por favor, está correcto ?
    Muchas gracias
    src = open
    prd = 2 //PP period
    factor = 3//Atr factor
    Pd = 12//Atr period
    len = 12//Cloud length
    Adxlen = 24//Adx length
    th = 24//Adx treshold
    showsignals = 0//boolean
    colorcandle = 0//boolean
    /////////////////////////Indicators///////////////////////////////
    ////////CLOUD
    pi=2*asin(1)
    er = abs(src-src[len])/summation[len](abs(src-src[1]))

    fastlimit = er
    slowlimit = er*0.1

    if barindex<6 then
    mesaperiod = 0
    smooth = 0
    detrender = 0
    I1 = 0
    I2 = 0
    Q1 = 0
    jI = 0
    Q2 = 0
    phase = 0
    else
    mesaperiodmult = 0.075*mesaperiod[1] + 0.54
    smooth = (4*src + 3*src[1]+2*src[2]+src[3])/10
    detrender = (0.0962*smooth + 0.5769*smooth[2] – 0.5769*smooth[4]-0.0962*smooth[6])*mesaPeriodMult
    I1= detrender[3]
    Q1 =(0.0962*detrender + 0.5769*detrender[2] – 0.5769*detrender[4]-0.0962*detrender[6])*mesaPeriodMult
    jI= (0.0962*I1 + 0.5769*I1[2] – 0.5769*I1[4]-0.0962*I1[6])*mesaPeriodMult
    jQ = (0.0962*Q1 + 0.5769*Q1[2] – 0.5769*Q1[4]-0.0962*Q1[6])*mesaPeriodMult
    I2 = I1 – jQ
    Q2 = Q1 + jI
    I2 = 0.2*I2 + 0.8*I2[1]
    Q2 = 0.2*Q2 + 0.8*Q2[1]
    Re = I2*I2[1] + Q2*Q2[1]
    Im = I2*Q2[1] – Q2*I2[1]
    Re = 0.2*Re + 0.8*Re[1]
    Im = 0.2*Im + 0.8*Im[1]
    if Re 0 and Im 0 then
    mesaperiod=2 * pi/atan(Im/Re)
    endif
    if mesaperiod>1.5*mesaperiod[1] then
    mesaperiod=1.5*mesaperiod[1]
    endif
    if mesaperiod<0.67*mesaperiod[1] then
    mesaperiod=0.67*mesaperiod[1]
    endif
    if mesaperiod 50 then
    mesaperiod = 50
    endif
    mesaperiod = 0.2*mesaperiod+0.8*mesaperiod[1]
    if I1 0 then
    phase=(180/pi)*atan(Q1/I1)
    endif
    deltaphase = phase[1]-phase
    if deltaphase < 1 then
    deltaphase = 1
    endif
    alpha = fastlimit/deltaphase
    if alpha < slowlimit then
    alpha = slowlimit
    endif
    endif

    a = alpha
    b = alpha/2

    if barindex kama[1]
    Scloud = kama mdi and myadx > th //long trend
    sadx = pdi th //short trend

    /////////PRICE POSITION
    ////////pivothigh
    ph1 = high < high[prd]
    ph2 = highest[prd](high) highest[prd](high)[prd+1]

    if ph1 and ph2 and ph3 then
    pivotH = high[prd]

    else
    pivotH = pivotH

    endif
    ////////pivotlow
    pl1 = low > low[prd]
    pl2 = lowest[prd](low) > low[prd]
    pl3 = low[prd] < lowest[prd](low)[prd+1]

    if pl1 and pl2 and pl3 then
    pivotL = low[prd]

    else
    pivotL = pivotL

    endif
    ////////Trailing
    if barindex = 0 then
    center = 0
    lastpp = 0
    Tup=0
    Tdown=0
    Trend=0
    else
    if pivotH pivotH[1] then
    lastpp = pivotH
    center = (center*2+lastpp)/3
    BUY 10000 CASH AT MARKET NextBarOpen
    elsif pivotL pivotL[1] then
    lastpp = pivotL
    center = (center*2+lastpp)/3
    sell at market NextBarOpen
    else
    lastpp = lastpp[1]
    center = center[1]
    endif

    atr = averagetruerange[pd](close)
    Up = center-(factor*atr)
    Dn = center+(factor*atr)

    if close[1]>Tup[1] then
    Tup = max(Up,Tup[1])
    else
    Tup = Up
    endif

    if close[1] Tdown[1] then
    Trend = 1
    elsif close < Tup[1] then
    Trend = -1
    else
    Trend = Trend[1]
    endif
    if trend = 1 then
    Trailings1 = Tup
    else
    Trailings1 = Tdown
    endif
    endif
    //////////SIGNALS
    if showsignals then
    bsignal = Trend=1 and Trend[1]=-1
    ssignal = Trend=-1 and Trend[1]=1
    if bsignal and not Scloud then
    firstlong = Trailings1

    else
    firstlong = undefined

    endif
    if ssignal and not Lcloud then
    firstshort = Trailings1

    else
    firstshort = undefined

    endif

    secondlong = Lcloud and Ladx and trend=1
    secondshort = Scloud and Sadx and trend=-1

    long = secondlong and firstlong
    short = secondshort and firstshort

    once longshort = 0
    longlast = long and (longshort[1]=0 or longshort[1]=-1)
    shortlast = short and (longshort[1]=0 or longshort[1]=1)

    if longlast = 1 then
    longshort = 1
    elsif longshort = 1 then
    longshort = -1
    else
    longshort = longshort[1]
    endif

    lastlongcond = long and longlast
    lastshortcond = short and shortlast

    if (bsignal and not scloud) or (lastlongcond) then
    longplot = Trailings1

    //drawarrowup(barindex,low-0.10*atr)
    else
    longplot = undefined
    endif

    if (ssignal and not lcloud) or (lastshortcond) then
    shortplot = trailings1

    //drawarrowdown(barindex,high+0.10*atr)
    else
    shortplot = undefined
    endif

    if ssignal and lcloud then
    longstop = trailings1

    //drawtext("✘",barindex,high+0.10*atr)coloured(0,250,0)
    else
    longstop = undefined
    endif

    if bsignal and scloud then
    shortstop = trailings1

    //drawtext("✘",barindex,low-0.10*atr)coloured(250,0,0)
    else
    shortstop = undefined

    endif

    endif

    ///////////COLOR CANDLES
    if colorcandle then
    if Lcloud then
    rbar=0
    gbar=210
    bbar=0
    elsif Scloud then
    rbar=255
    gbar=0
    bbar=0
    endif

    ENDIF
    //return mama as "Cloud A" coloured(rcloud,gcloud,bcloud), fama as "Cloud B" coloured(rcloud,gcloud,bcloud), Trailings1 as "PP line" coloured(rcloud,gcloud,bcloud)
    //return a*src as "a*src",(1-a) as "1-a"

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Dom Hello, hello....je commence le trading et découvre par la même occasion le codage....et ce n...
Nicolas Merci, ça fait plaisir !
Be-n Bonjour tout le monde ! Dans l'indicateur de tendance, j'ai du mal à saisir la nuance entre ...
Globalmarkets79 Thank you Vonasi for the answer. I have an other question. When i tried to run the indicator...
Vonasi Lines is either 0 or 1 to turn on or off the drawing of them. Once again if you download and...
Globalmarkets79 Thank you Vonasi, this indicator is very helpful!!!
Nicolas
6 years ago
Bateson Merci pour la réponse Nicolas. C'est bien ce que j'ai fait mais ça ne fonctionne toujours pa...
Enzo Paliotti Veramente ottimo, era quello che cercavo, si potrebbe modificare inserendo come variazione a...
Nicolas Perché no, chiedetelo con una descrizione dettagliata nel forum degli indicatori, per favore!
jiddan78 how to convert to afl amibroker ?
Nicolas We do not supply free coding assistance for AFL Amibroker on the website. You can ask for pa...
Ngomsi @ Vonasi, how to use timeframe , 13 minutes ,21 minutes, 34 minutes,et 55 minutes with this...
manchokcity can we have it in mql4 platform? or how or which platform do we use it?
camporan I don't use MetaTrader so I won't be able to do the translation myself. Sorry!
Alexander9 This can for amibroker ? . Thanks
riz001 thnk u
geroniman bonjour Nicolas, j ai un indicateur le Tiger . J aiemrai placer des fleches buy et sell dire...
Nicolas Merci de formuler les demandes sur le forum. ça n'est pas le bon endroit et hors sujet ici ! ;)
avatar
Anonymous Hi robertogozzi - thank you very much for sharing this strategy. I have performed various ...
robertogozzi Thank you samsampop.
Dotan Hello guys I really appreciate this coding effort but can I use this code for Mt5 Forex Trad...
LucioleLucide Clean view, thanks for sharing
dertopen hi where i can found the window for candle configuration?
paolosab69 Ciao! . I have seen the pictures that explain this metod but i don't understand when is mome...
AlgoAlex
6 years ago
Marcot18 Alex ti sei superato
AlexF Esagerato!
SL Hi, Fer666 Thank you for sharing. If I want to show daily ST on a 10_min intraday chart...
SL correction above... system had remove"not equal" signs Line 19 : change to if WeekNo "Not...
SL OK... I had figured out... need more than that. Thank you anyway.
coscar Ottimo lavoro. come sempre!
luxrun Nello studio di Sepiashvili viene descritto anche un altro indicatore, il Q-indicator, che è...
Maik2404 wie kann ich den Code bekommen Paul?
jens_kittner Works with US Crude at 1h as well!
Jean-Claude REGIS Je préconise de regarder les graphiques H1 et M15 pour visualiser la tendance de fond et d'...
capgros Bonjour @Nicolas, Thanks a lot for this tool, it is very useful for me. I would like to s...
Hans63 Would you add the possibility to color also the Heikin Ashi and bar chart?
Nicolas That's possible, please open a new topic in the indicator forum explaining what you need exa...
Nicolas
6 years ago
BSTrend
v10.3
BSTrend
10
Indicators
Florian Legeard C’est à dire sur le prix et non sur le temps ? Merci
Rohit82189 bstrend repaints
Nicolas No, it doesn't repaint.
Juan Salas Hi FULVIO09, Nice piece of work. It seems to work very well. Does only work for INDEXES??...
Johann Hi @FULVI09, I understand the instructions however I'm not too sure how to determine the "p...
Player8520 Hello, It doesn't work with me either. However, I changed AA to 180 on line 15, added th...
cfta Hi Fulvio, many thanks for sharing this clever indicator, much appreciated. As Pepsmile ment...
cfta Sorry adding the PRT to code didn't work in the above comment so I guess we will have to set...
juanj Something appears to be wrong with this formula as graphing t shows t to almost never be wit...
Nicolas
7 years ago
Maxime Baudin Interesting, Thank you! :)
franck-david Bonjour Nicolas , actuellement je me forme grace a vos videos tres tres bien expliques mer...
Nicolas Merci. ça n'est pas le lieu pour poser ce genre de question :) Merci d'utiliser le forum Pro...
Vonasi Discussion on this indicator/filter can be found here: https://www.prorealcode.com/topic/121...

Top