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 • 02/15/2024 #

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

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

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

  3. Iván • 02/15/2024 #

    //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 • 02/15/2024 #

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

  5. Madrosat • 02/15/2024 #

    Hello Ivan
    Did you try a strategy with this indicator

  6. Iván • 02/15/2024 #

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

avatar
Register or

Likes

avatar avatar avatar avatar
Related users ' posts
IV Mcm Bonjour, Je ne reconnais pas cette ligne dans le code, essayer de télécharger directement le...
Manu L. Bonjour, Possible de créer un screnner multiframe Mois dans Ichimoku semaine dans Ichimok...
Guillaume Mcm I gave the above message fix ;)
Tradingrob Is it possible to put the itf-file in the right way here in Prorealcode? so the right 'trend...
Guillaume Mcm Update link ;) https://www.prorealcode.com/topic/trend-histogramme-cci-mise-a-jour-suite-...
Screw27 Hi man, I installed the indicator and i don't know why but my graph it is so big
HelixKing sounds interesting I'll take a look
Godo Bonjour Souhait Sam, Après de nombreux essais pour le mettre en format afin d'utiliser ce c...
Nicolas Il faut supprimer celles qui existent dans la fenêtre d'optimisation et les créer en dur dan...
crusoe76 hi there, anyone can help making this strategy work, i have a message saying replace variabl...
Screw27 Salut nicolas j'aimerais savoir tes résulats grace a cettte methode
eva.g.forsgren It dose not work, I get a strap instead of candels???????????????????????????????????????????
Nicolas That indicator is the one below the chart. The indicator to put on the price chart is this o...
pyhrus P.S : IG , que j'ai contacté ,m'indique que la version V11 , ne sera pas disponible avant un...
Hasardeur Dear Nicolas, is there someting at the arry to modify in order to run the trend at the actu...
MALIMALO Dear Nicolas, just try touse your indicator with backtest but it's not working. is anybody...
ribes65 Bonjour Nicolas, Merci pour votre travail. Est-il envisageable de créer un screener pour ...
Nicolas Bien sûr, merci de formuler une demande dans le forum des screeners pour prorealtime. En res...
ipbvba Est il possible de le transformer en indicateur (pour ne plus avoir les lignes mais uniqueme...
supertiti Bonjour Nicolas, Je ne comprend pas bien , le trend change de couleur quand les prix sont a...
Nicolas Oui ce serait possible, cependant l'indicateur est bien prévu pour conserver la couleur de l...
supertiti Quand tu pourras si tu peux nous coder la troisième couleur cela améliorerait les trades cou...
Nicolas How to import file page: in the help section of the website explains howto
kenssa import through the indicator page/window in the Proreal time
chicoteca Buenas, no consigo que se me muestre en el chart de DAX. ¿Cómo procedo? Gracias.-
Ciccarelli Franco Per lasciare che la strategia venga eseguita (dopo aver importato il file): Basta eliminare...
JADINVEST Hello Jan, hello everyone, Thanks Jan for this strategy! Since 2020, have any of you found a...
Alessandro Furlani Hi Ian, hope you still use PRT and so you can read this post. I have tested a lot your work ...
Stockastiss Can this code be simply transferred into Backtestingcode so one doesnt need to use call ? (i...
Vonasi Sorry for the late reply. Add the code to your strategy and remove line 5 and line 39. Chang...
viktorthunss Hi! How many averages are there? Can I see the somewhere?
leofi https://www.prorealcode.com/topic/simple-average-with-visual-color/
leofi Go visit www.prorealcode.com/topic/simple-average-with-visual-color/ and watch 2em post
Dritan Hi,I am new on Prorealtime and coding.I downloaded the indi but I have it on a separate wind...
Nicolas Just add it on the price series.
yomisadiku Hello Nicolas, Can I use high and low price at lines hh=max(hh,close) and ll=min(ll,close) ...
Nicolas Yes you can do that, the impact will be that the trailing stop line will be much close to th...
Byggtrader Hi Nicolas! How do I get the indicator in the price chart? It only stays under i new chart.
Nicolas Just add it on the price chart by using the wrench on the left upper side of the chart (pric...
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...

Top