Optimized Trend Tracker OTT

Optimized Trend Tracker OTT

Optimized Trend Tracker OTT is an indicator that provides traders to find an existing trend or in another words to see which side of the current trend we are on.

We are under the effect of the uptrend in cases where the prices are above OTT ,
under the influence of a downward trend, when prices are below OTT.

The first parameter in the OTT indicator set by the two parameters is the period/length.

OTT will be much sensitive to trend movements if it is smaller. And vice versa, will be less sensitive when it is longer.

As the period increases it will become less sensitive to little trends and price actions.

In this way, your choice of period, will be closely related to which of the sort of trends you are interested in.

The OTT percent parameter in OTT is an optimization coefficient. Just like in the period
small values ​​are better at capturing short term fluctuations, while large values
will be more suitable for long-term trends.

In addition, when OTT is used with the support line in it, buy and sell signals
it will become a producing indicator.

You can use OTT default alarms and Buy Sell signals like:

1-
BUY when Prices are above OTT
SELL when Prices are below OTT

2-
BUY when OTT support Line crosses over OTT line.
SELL when OTT support Line crosses under OTT line.

3-
BUY when OTT line is Green and makes higher highs.
SELL when OTT line is Red and makes lower lows.

Text from his author: KivancOzbilgic

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. MaoRai54 • 72 days ago #

    Hi, many thanks for this indicator but it doesn’t work. Need to define the AverageTypeVAR

  2. Iván • 72 days ago #

    Hi! If you download the indicator the variable will be defined. Anyway here you have again with default parameters:

  3. Iván • 72 days ago #

    //PRC_Optimized Trend Tracker | indicator
    //version = 0
    //14.02.24
    //Iván González @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge
    ////developer: ANIL ÖZEKŞİ
    //////inputs
    src = customclose
    length = 2 //OTT period
    percent = 1.4 //OTT percent
    showsupport = 1 //Show Support Line
    showsignalsk = 1 //Show Support Line Crossing Signals
    showsignalsc = 0 //Show Price/OTT Crossing Signals
    highlight = 0 //Show OTT Color Changes
    highlighting = 1 //Highlighter On/Off
    AverageTypeVAR = 1 // use VAR average
    mav = 1 //Moving Average Type
    ///////indicator
    ////VAR
    if barindex < 9 then
    var = src
    else
    valpha=2/(length+1)
    if src > src[1] then
    vud1= src-src[1]
    vdd1= 0
    elsif src < src[1] then
    vud1= 0
    vdd1=src[1]-src
    else
    vud1=0
    vdd1=0
    endif
    vUD=summation[9](vud1)
    vDD=summation[9](vdd1)
    vCMO=(vUD-vDD)/(vUD+vDD)
    VAR=(valpha*abs(vCMO)*src)+(1-valpha*abs(vCMO))*VAR[1]
    endif
    if barindex < length then
    Mavg = src
    dir = 1
    else
    if AverageTypeVAR then
    Mavg = var
    else
    Mavg=average[length,mav](src)
    endif
    fark = Mavg*percent*0.01

    longStop = Mavg – fark
    longStopPrev = longStop[1]

    if Mavg > longStopPrev then
    longStop = max(longStop,longStopPrev)
    else
    longStop = longStop
    endif

    shortStop = Mavg + fark
    shortStopPrev = shortStop[1]

    if Mavg < shortStopPrev then
    shortStop = min(shortStop,shortStopPrev)
    else
    shortStop = shortStop
    endif

    if dir = -1 and Mavg > shortStopPrev then
    dir = 1
    elsif dir = 1 and Mavg < longStopPrev then
    dir = -1
    else
    dir = dir[1]
    endif
    endif

    if dir = 1 then
    MT = longStop
    else
    MT = shortStop
    endif

    if Mavg > MT then
    OTT = MT*(200+percent)/200
    else
    OTT = MT*(200-percent)/200
    endif

    pALL = OTT[2]
    ///////////OTT colors
    if highlight then
    if OTT[2]>OTT[3] then
    r=76
    g=175
    b=80
    else
    r=255
    g=82
    b=82
    endif
    else
    r=184
    g=0
    b=117
    endif
    //////////print signals
    buysignal = Mavg crosses over OTT[2]
    sellsignal = Mavg crosses under OTT[2]

    if buysignal and showsignalsk then
    drawarrowup(barindex,low-0.25*averagetruerange[10](close))coloured(“green”)
    elsif sellsignal and showsignalsk then
    drawarrowdown(barindex,high+0.25*averagetruerange[10](close))coloured(“red”)
    endif

    buySignalc = src crosses over OTT[2]
    sellSignallc = src crosses under OTT[2]

    if buySignalc and showsignalsc then
    drawtext(“▲”,barindex,low-0.25*averagetruerange[10](close))coloured(“green”)
    elsif sellSignallc and showsignalsc then
    drawtext(“▼”,barindex,high+0.25*averagetruerange[10](close))coloured(“red”)
    endif

    if Mavg > OTT then
    r1=0
    g1=250
    b1=0
    else
    r1=250
    g1=0
    b1=0
    endif

    mplot = (high+low+close+open)/4

    if highlighting then
    colorbetween(mplot,pALL,r1,g1,b1,40)
    endif

    return Mavg*showsupport as “Media” coloured(0,0,250)style(dottedline,2),pALL as “OTT”coloured(r,g,b)style(line,2)

  4. MaoRai54 • 72 days ago #

    Thanks, now it’s OK. in your first code at line 15-16 it’s missing.

  5. Madrosat • 71 days ago #

    Hello Ivan
    Did you try a strategy with this indicator

  6. Iván • 71 days ago #

    Hi. No I didn’t. This is a code translation requested by an user a few days ago.

avatar
Register or

Likes

avatar avatar
Related users ' posts
kats Bonsoir, cet indicateur est vraiment très bien avec plusieurs possibilités en coloration . ...
roccafragius Thank you Ivan for your indicators, very very interesting!!!!
kats Bonsoir, Pensez vous pouvoir répondre à ma question posée ci dessus? Ce serait vraiment tr...
Gaspare Ciao Ivan si puo' inserire una strategia su questo indicatore per ottimizzare le variabil...
Iván
3 weeks ago
Iván Si lo descargas e importas en tu PRT verás que se han creado las variables para luego config...
WhyAskOZ Hi, Ivan As always you are doing great coding. The code works on my PRT, however the issu...
Iván You can delete in the last line (return) the configuration for color. Delete coloured(xx,xx,...
P. Marlowe Quite an impressive work, Iván. Extremely useful and accurate. Congratulations. Keep it up¡
lkiklkik i love it !!! thanks.
Stenozar Hi Ivan, can you translate from tradingviwe the EMA TREND METER INDICATOR? It couid be inte...
Iván Hi Yes I can. Please, create a new topic for that I will translate it.
Stenozar Hi Ivan, I've created a new topic about the indicator: https://www.prorealcode.com/topic/ema...
Doddge Hola Iván, ¿sería posible crear un screener que indique cuándo las velas coloreadas del indi...
RTR Ivan thank you for the pro-screener. I a trying to understand how to write the signals from ...
Iván Hi, Lines 62 and 63. These lines define buy and sell conditions.
Iván Hi You should delete from the indicator code all drawing functions and all variables not us...
Iván I've created a screener to show [longcondition or shortcondition]
Chrisinobi Hallo Ivan, Danke das ist Perfekt !! Kannst du bitte in der Screener-Bibliothek die itf. hoc...
Iván
2 months ago
cjr30 Simplemente modifica las lineas 19 y 21 por las siguientes: drawtext("▲",barindex,low-0.1*a...
groelandes Gracias!!
WhyAskOZ i copied the code into strategy and it gives error on line 21 and 23. it says " Line 1: ...
Iván
3 months ago
Madrosat Hello Ivan You have interesting topics on indicators , smart supertrend, optimised trend t...
Iván Hi! thanks. All of these codes are translations requested in the forum. I've on mind to back...
Raspete01 Buenos días Iván, estoy intentando llevar el código eliminando los colores y pasando un Back...
Iván
3 months ago
ARLEQUIN49 Hello Ivan, Would it be possible to convert the code of this QQE MOD indicator which accomp...
ARLEQUIN49 here is the code: //@version=4 //By Glaz, Modified // study("QQE MOD") RSI_Period = i...
Iván Hi, Yes I can translate it but please, create a new topic for it.
Fgats quelques explications en Français ici : Some explanations in French here : https://www.p...
Nicolas Merci pour cette contribution, j'apprécie ! :)
Fgats Merci Nicolas pour ces encouragements et merci aussi pour le commentaire en Anglais accompa...
Alai-n I really like it when you develop ideas around price movement! I am much less a fan of all t...
elcortijoverde Muy buen trabajo.Intuitivo y claro.Gracias por tu dedicación y aportación.
Nicolas
9 months ago
B-Xtrender
B-Xtrender
8
Indicators
616248 Bonjour Nicolas, Peux tu nous expliquer le principe de fonctionnement ? Ou nous mettre un...
Nicolas Le lien vers l'article IFTA de l'auteur est dans le post déjà :)
P. Marlowe Very poweful indeed. It deserves close attention. I really appreciate very much IFTA backgro...
JS
9 months ago
Trendilo
Trendilo
0
Indicators
Nicolas
9 months ago
Anthony2A Bjr, j ai des erreurs sur la ligne 69, 74, 78 et 80. sur drawcandle drawtext et endif. si ...
Lucas0000 Hello, Congratulations on this programming, it seems incredible to me, I am new to this but ...
plbourse Hello, I am trying to use this singal (in fact I have converted it to an indicateur giving B...
BriceE Bonjour Nicolas, Je suis a la recherche d'indicateurs pour me donner la meilleure indicatio...
Nicolas
11 months ago
Maxime Baudin Well done Nicolas, creative!
Stenozar Hi Nicolas, please can you explain how to read/use this indicator? thanks!

Top