ATR Trailing Stop

ATR Trailing Stop

Hi all !

At the request of one of my readers of my website, I created this code : the ATR Trailing Stop.

I have not found any ProRealTime code of this indicator over the internet, so I created myself this code today.

I apologize if you already have a same code.

The ATR trailing stop is an indicator which, as its name suggests, uses the Average True Range as a trailing stop.

In this code, I did choose a period p = 14, but feel free to change it.

How to calculate the ATR trailing stop (ATRts) ?

The ATRx is defined by the closing price which is subtracted (uptrend) or added (in downtrend) 3.5 x ATR.

In uptrend (close > ATRts), if ATRx of the day is greater than the ATRx of the day before, the ATRts takes the value of the ATRx.

But if this ATRx day is lower than the day before, the ATRts is unchanged.

Therefore: the ATRts can only increase or stay the same in uptrend.

Of course, the rules are the opposites for a downtrend.

A simple indicator, and effective for trading!

Notice that it reminds closely the « SuperTrend » of Olivier Seban…

Here is the code (please insert it on the main graph) :

 

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. mbaker15 • 11/16/2016 #

    Hi,
    Could you help me add this to my swing trading code?
    Mark
    defparam cumulateorders = false

    REM Money Management
    Capital = 2500 // initial capital at launch of the strategy
    Risk = 2.5 // risk in percent

    REM Calculate contracts
    equity = Capital + StrategyProfit
    maxrisk = round(equity*(Risk/100))

    REM defining moving averages
    EMA5 = exponentialaverage[20]
    EMA100 = exponentialaverage[150]
    EMA200 = exponentialaverage[200]
    hh = highest[20](high)
    ll = lowest[20](low)

    // -- case BUY
    if EMA5 crosses over EMA200 then
    stoploss = (close-ll)/pointsize
    stoplevel = (close-ll)
    PositionSize = abs(round((maxrisk/StopLoss)/PointValue)*pipsize)
    BUY PositionSize SHARES AT MARKET
    endif

    // -- case SELL
    if EMA5 crosses under EMA200 then
    stoploss = (hh-close)/pointsize
    stoplevel = (hh-close)
    PositionSize = abs(round((maxrisk/StopLoss)/PointValue)*pipsize)
    SELLSHORT PositionSize SHARES AT MARKET
    endif

    // -- trades exit
    if EMA5 crosses under EMA100 then
    SELL AT MARKET
    endif
    if EMA5 crosses over EMA100 then
    EXITSHORT AT MARKET
    endif

    SET STOP LOSS stoplevel
    SET TARGET PROFIT 100

     

  2. Laurent7533 • 11/16/2016 #

    Bonjour,
    J’aimerais utiliser cet indicateur dans un autre indicateur mais quand j’utilise la commande CALL ” ATR TRAILING STOP”, ça ne marche pas. Je ne comprends pas pourquoi ça ne marche pas. Une idée ?

    • Degardin Arnaud • 11/16/2016 #

      Ajoute ceci à la strategie pour gerer les sorties dans le proorder:
      //ATR TRAILING STOP
      // Période
      p = 14

      // Average True Range X
      ATRx = AverageTrueRange[p](close) * 3.5

      // Inversion de tendance
      IF close crosses over ATRts THEN
      ATRts = close – ATRx
      ELSIF close crosses under ATRts THEN
      ATRts = close + ATRx
      ENDIF

      // Cacul de l’ATRts lors de la même tendance
      IF close > ATRts THEN
      ATRnew = close – ATRx
      IF ATRnew > ATRts THEN
      ATRts = ATRnew
      ENDIF
      ELSIF close < ATRts THEN
      ATRnew = close + ATRx
      IF ATRnew ATRts THEN
      SELL AT MARKET
      ENDIF

      IF SHORTONMARKET and close < ATRts THEN
      BUY AT MARKET
      ENDIF

  3. Degardin Arnaud • 11/16/2016 #

    pardon…
    IF LONGONMARKET and close < ATRts THEN
    SELL AT MARKET
    ENDIF

    IF SHORTONMARKET and close > ATRts THEN
    BUY AT MARKET
    ENDIF

  4. Doctrading • 11/16/2016 #

    Bonjour à tous,
    Pour une raison que j’ignore, le code ne fonctionne plus tel quel.
    Il fonctionne de nouveau avec ceci :

    Je n’ai pas d’explication.
    Cordialement,

  5. Doctrading • 11/16/2016 #

    // Inversion de tendance
    IF close[1] ATRts and close < ATRts THEN
    ATRts = close + ATRx
    ENDIF

  6. s00071609 • 11/16/2016 #

    Hi Guys Quick question regarding the above indicator. First of all is the below code correct for trailing STOP using the above indicator
    I have uploaded the indicator and named it ATRSTOP and used this code. When order is entered before the market turns bearish, and indicator just start to form the upper resistance, the price moves down and then it gets whipsawed at the prior bull support line. If i am understanding this correctly I believe this is what is happening. Any help would be great, thanks,

  7. s00071609 • 11/16/2016 #

    This is the code, could not insert in with ADD PRT

    //ATR STOP TRAIL FOR STU
    ATRts = CALL “ATRSTOP”
    //IF LONGONMARKET and close ATRts THEN
    BUY AT MARKET
    ENDIF

  8. dvlukic • 11/16/2016 #

    Hi Doctrading,
    How do I make the indicator overlay on the price series like on your screenshot?
    Thanks
    Dave

  9. Guibourse • 11/16/2016 #

    Hi ! I am asking once again for your help : would it be possible to use the ATR as a “take profit” ? In an uptrend for example it would create a line above the price… Thanks a lot !!

  10. Tradingrob • 11/16/2016 #

    Many thanks for the indicator, however if the price is below the indicator, then the indicator’s line must also be colored red as a stop loss signal for the short. Unfortunately he doesn’t yet. Can this be changed in a new itf?

  11. aldtrading • 11/16/2016 #

    Merci pour ton travail ! J’ai de bons résultats en utilisant cet indicateur

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar

+9 more likes

Related users ' posts
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 remplacer les valeurs de coloured(0,255,0) par coloured(r,g,b) et ajouter ces noms de variab...
mohamed merci Nicolas!
sacram14 Merci Nicolas pour ce set-up que je ne connaissais pas ! J'ai tenté de reprendre le code pou...
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...
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...
Thomas
6 years ago
Thomas Como? no intiendo. Can you write in english . It works! Download the itf file.
Thomas New Version comin soon...
CHARLESRACHELLE OLA NAO SERVE PARA MT4?
nfulcher Please could someone explain how the following code is calculated:- iDI = TEMA[3](DI[DI2]...
oakenstream Jan, I find sometimes that the priceexit variable is never set. It seems to happen when the ...
Matt66612 I do not understand the first time I launch the backtest I got the same result as you. but ...
juanj
6 years ago
juanj I have actually completely redesigned this indicator with loads of improvements, so will res...
ottimo Thank you Nicolas, great indicator, N. 1
tikigai Merci Nicolas! First Happy new Year 2020. Very good indicator BUT (yes the french "oui, m...
Nicolas Whats prorealtime version? Did you try in version prior to v11? indicator's call and loop ca...
Marcos Alvarez Dominguez Hello Nicolas, is it possible to stablish a bullish screener for this indicator when the cen...
Nicolas Please open a topic in the screener section to ask for this specific query.
zaher123 Hello, the indicator doesn't show up anything on the screen, any suggestions please?
Nicolas Apply it on the price chart. The indicator plot just one single line. There are two in the...
jamesoc Hi Nicolas, do you happen to know if there is an indicator that can be applied to charts, to...
gustavobp Buenos dias Nicolas, al agregar tu indicador no me reconoce la variable Price ni en la linea...
joobeng Sorry, I solved the problem. I have add the CBL indicator using the spanner icon on the pric...
Nicolas Adjust the price settings for the Y Axis to use the price only.
XXXXVII Hello Your indicator is interesting. However, I can't see the orange line. Do you have ...
bharatjai Script 'Adaptive ATR' has been saved line 24: no viable alternative at input 'lr' Gettin...
Nicolas download the itf file and import it into your platform.
Francis3332 Bonjour à tous, J'aime beaucoup cet indicateur et j'aimerais pouvoir l'utiliser sur la dern...
Nicolas Definition of CustomClose: https://www.prorealcode.com/documentation/customclose/ [2] means...
Bard Just wondered Nicolas, say you had set DEFPARAM CumulateOrders = True, is there anyway for t...
Bard Sorry pls ignore last image, try this - it actually has the Dev Stop indicator! https://www...
AGTrader Interesante, muy visual Doc. Felicidades!!!
Andraxx simplemente impresionante Dom...te sigo en youtube. Me ha gustado tu canal. Gracias por comp...
Caribeengeek Bonjour j’avais vu que vous proposiez d’écrire des codes pour ceux qui s’y connaisse pas Mai...
Caribeengeek Les devises unité
Nicolas Merci d'utiliser le forum pour les demandes de programmation personnalisée

Top