Magic Trend Indicator

Magic Trend Indicator

Magic Trend Indicator may help identifying the correct trend direction.
It is plotted on the price chart, like any moving average, though it is faster, more accurate
and reliable than other trend following indicators.

The calculation of indicator is based on ATR, current price direction and some more complex
logic.

Magic Trend Indicator changes its color based on the direction of the trend, so if the line
is green then the trend is up and if it is red then the trend is down.
The value of Magic Trend indicator can be used as trend reversal trigger on closing basis.
If you are on long position and on any bar price closes below the indicator value then the
indicator turns red from the next bar to indicate the reversal of trend, so the trader can
exit his long position and take short position at the same time.
The opposite rules apply to the short positions.

A buy signal is also triggered when the closing price crosses above the Magic Trend line and
a short signal is triggered when the closing price crosses below the Magic Trend line.

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. naluis • 09/14/2021 #

    what is the function of temp1? it is not taken into account in the calculation

  2. murre87 • 09/14/2021 #

    How can i use this in a strategy?

  3. robertogozzi • 09/14/2021 #

    It is well described above.
    To use it you can use CALL as with any other indicator.
    This is the instruction:
    myMagicTrend = CALL “Magic Trend”[20, 14, 1, 5]
    Parameters (you can change them as best suits you):
    20 is the CCI periods
    14 is the ATR periods
    1 is the ATR multiplier (can be a decimal number)
    5 is the periods of a Simple Moving Average.

  4. murre87 • 09/14/2021 #

    I Created a thread for this
    https://www.prorealcode.com/topic/magic-trend-strategy/

  5. murre87 • 09/14/2021 #

    Wich timeframe and index are used in your picture?

  6. Johann • 09/14/2021 #

    Hi Roberto, Thank you for the work but how do you get the indicator to change color from green to red and vice versa? Mine is one color only with no option to change it in the configuration window?

    • Lavallette • 09/14/2021 #

      Color and other drawing indicator settings can be changed easily if you select “Properties”.

    • robertogozzi • 09/14/2021 #

      If MagicTrend > MagicTrend[1] then it’s green, red otherwise.

  7. Lavallette • 09/14/2021 #

    Hello Roberto.
    Thanks for this interesting indicator.

    I wanted to try use it in an automatic system in 2 different ways.

    First depending on its state do not enter long or short. Example if green, do not short and if red do not enter long
    Second trigger signal when the color change from green to red or red to green.

    I must admit I failed in both ways.
    Could you please advice?
    Cheers.

  8. robertogozzi • 09/14/2021 #

    If MagicTrend > MagicTrend[1] then it’s green, red otherwise.

    • Lavallette • 09/14/2021 #

      Thank Roberto.
      I thought about that also but I would like to get only one signal. Only when the color change from green to red or red to green.
      If I do
      MagicTrend > MagicTrend[1]
      I will get several signals not only when the color change.

  9. robertogozzi • 09/14/2021 #

    (see below)

  10. robertogozzi • 09/14/2021 #

    If MagicTrend <> MagicTrend[1] then it’s Green or Red

    • raffa58 • 09/14/2021 #

      Buonasera Roberto, ho provato ad usare questo indicatore inserendo l’istruzione di cui sopra ” If MagicTrend > MagicTrend[1] then it’s green, red otherwise” ma ricevo un errore di sintassi . cosa sbaglio ? grazie

  11. Leo_da_Pisa • 09/14/2021 #

    A really nice indicator. Can easily be used as a strategy. I’ve tried a few trend indicators here but this one works perfectly for me.

    Thank you for sharing, Roberto.

  12. Thomas • 09/14/2021 #

    Hi. I would like to color the background green or red if the “Magic Trend Custom” is green or red. Unfortunately I can’t get this to work correctly. I tried the following:

    myMagicTrend = CALL “Magic Trend custom”[20, 14, 1, 5]

    //If myMagicTrend => myMagicTrend[1] THEN
    //BACKGROUNDCOLOR(204,255,204,alpha)
    //ELSIF myMagicTrend =< myMagicTrend[1] THEN
    //BACKGROUNDCOLOR(255,204,204,alpha)
    //ENDIF

    If myMagicTrend <> myMagicTrend[1] THEN
    BACKGROUNDCOLOR(204,255,204,alpha)
    ELSE
    BACKGROUNDCOLOR(255,204,204,alpha)
    ENDIF

    Return

    Can anyone help me? Many thanks

    • robertogozzi • 09/14/2021 #

      You forgot to set the variable ALPHA to any value between 0 and 255 (0=invisible, 255=fully visible). place this line at the beginning (or at any point prior to where it is used):
      alpha = 150

    • Thomas • 09/14/2021 #

      Hello Roberto. I have set ALPHA as a variable. But even if I fill it in manually, the background doesn’t match the magic trand indicator.
      I p

    • Thomas • 09/14/2021 #
    • robertogozzi • 09/14/2021 #

      It’s because you are NOT checking when it’s green or red, but when it’s different from the previous bar.
      This will do:
      myMagicTrend = CALL “Magic Trend custom”[20, 14, 1, 5]
      alpha = 150
      Green = myMagicTrend > myMagicTrend[1]
      Red = myMagicTrend < myMagicTrend[1]
      If Green THEN
      r = 204
      g = 255
      b = 204
      ELSIF Red THEN
      r = 255
      g = 204
      b = 204
      ENDIF
      BACKGROUNDCOLOR(r,g,b,alpha)
      Return

  13. Thomas • 09/14/2021 #

    Ahhh, I think it rang now. MANY THANKS. I shouldn’t have used “Background” in the query:
    Instead of:
    If myMagicTrend => myMagicTrend[1] THEN
    BACKGROUNDCOLOR(204,255,204,alpha)
    ELSIF ………….

    Right way:
    IF myMagicTrend > myMagicTrend[1] THEN
    r = 204
    g = 255
    b = 204
    ELSIF myMagicTrend < myMagicTrend[1] THEN
    r = 255
    g = 204
    b = 204
    ENDIF

    Sto usando il tuo codice ora.
    Stupido, io. Grazie molte.

    Tonto, yo.
    😉

  14. johann8 • 09/14/2021 #

    I want to see vertical lines instead of background. Green line long and red line short.
    Can someone help me?
    see image.

    Thanks 🙂

    • Nicolas • 09/14/2021 #

      use DRAWVLINE in replacement of BACKGROUNDCOLOR.

  15. johann8 • 09/14/2021 #

    Simply “DRAWVLINE” through “BACKGROUNDCOLOR” doesn’t work.
    I have no idea about it.

    • robertogozzi • 09/14/2021 #

      You can find details about the instructions at https://www.prorealcode.com/prorealtime-documentation/.
      Anyway, this is the code:
      myMagicTrend = CALL “Magic Trend custom”[20, 14, 1, 5]
      alpha = 105
      b = 0
      Green = myMagicTrend > myMagicTrend[1]
      Red = myMagicTrend < myMagicTrend[1]
      If Green THEN
      r = 0
      g = 255
      ELSIF Red THEN
      r = 255
      g = 0
      ENDIF
      DrawVline(BarIndex) coloured(r,g,b,alpha)
      Return

  16. johann8 • 09/14/2021 #

    Thanks Roberto,

    even with the instructions i didn’t get any further.
    What I want is just a vertical one line for long (red) and one line for short (green). Not permanent.

  17. johann8 • 09/14/2021 #

    https://www.prorealcode.com/wp-content/uploads/2016/02/DRAWVLINE-example.png

    • robertogozzi • 09/14/2021 #
    • robertogozzi • 09/14/2021 #

      There you go:

      myMagicTrend = CALL “Magic Trend custom”[20, 14, 1, 5]
      alpha = 105
      b = 0
      Green = myMagicTrend > myMagicTrend[1]
      Red = myMagicTrend < myMagicTrend[1]
      If Green THEN
      r = 0
      g = 255
      Last = 1
      ELSIF Red THEN
      r = 255
      g = 0
      Last = 2
      ENDIF
      IF Last <> Last[1] THEN
      DrawVline(BarIndex) coloured(r,g,b,alpha) STYLE(Line,5) //width 1-5
      ENDIF
      Return

  18. johann8 • 09/14/2021 #

    exactly 🙂

    Thank you all for the help!

  19. max_92 • 09/14/2021 #

    Ciao Roberto, ho scaricato l’indicatore e come ti avevano già scritto sopra anch’io vedo la linea di un solo colore. Non sono esperto di programmazione, per fare il colore verde e rosso come nella tua foto come devo fare. Devo inserire un’altro pezzo di codice? Nel caso quale e in che posizione? Grazie

avatar
Register or

Likes

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

+8 more likes

Related users ' posts
Nicolas
7 years ago
Trinity Impulse
Trinity Impulse
5
Indicators
ribou ah d'accord merci beaucoup
domenico nlevel1 non modifica la curva al variare del suo valore
tiger_man_no1 Very nice ; what is the best period input date for DAILY CHART ?
Nicolas
7 years ago
Genotik Merci !
WarningTrading Comment peut on la comparer ? comme ceci ? cela ne me donne plus le message d'erreur manque...
sally31120 Bonjour, je n'arrive pas à créer ce screener close > supertrend extended2[1] la réponse...
Nicolas voir ce sujet pour un screener basé sur Supertrend Extended: https://www.prorealcode.com/top...
Marcel For those who are interested, I post trade opportunities with this indicator on Twitter. (@M...
swapping Thank you for sharing, best regards
Tellie2015 tack ska du ha för dina delningar både här o twitter
Leo Hi all, I posted a new version of this indicator ( I just add arrows to spot the local maxi...
Trading_En_El_Ibex35 Muchas Gracias por compartir este interesante indicador. Un saludo
xavieralava hola gracias leo
Nicolas
7 years ago
Nicolas https://www.prorealcode.com/topic/ayuda-screener-indicador-perfect-trend-line/#post-51291
Manu L. Bonjour Nicolas, suite a une de mes precedentes demande dans le forum indicateur, j'ai touv...
AntoGH C'est selon moi le meilleur indicateur, que j'ai vu, si vous trouvez mieux dîtes moi car dif...
Jiacky mma = average[per,1](close) should be mma = average[per,1](close * 1000). Otherwise TDF will...
bolsatrilera Hi Nicolas, I have this version of the True Balance Power ,created by eykpunter on Tradingvi...
bolsatrilera and the code : REM TRUE BALANCE OF POWER // código original de eykpunter para la plataform...
Steven Bahia Hi Nicolas - great indicator - is there a way to place a alert when the Oscillator crosses ...
Nicolas Alerts can't be programmed, you have to set them yourself with the Alert tool of the platfor...
Steven Bahia just to add to this would there be a way to establish a entry price from the Oscillator
juanj And the point of violation is the close of the candle that violates the line by generating a...
juanj For the latest version of the strategy or to follow updates and developments see the thread ...
phanz i backtested it with 10K units of EURUSD 1 hour i get an equity curve that is going one way ...
Wing Not yet but I plan to.
Leo Have a look in this Forum, I got something interesting for you... https://www.prorealcode.co...
Dávid Gyalus Dear Wing, As I am a daytrader, and one of my best friend is a programmer we think your a...
EchnatonX Hallo Im Demomodus bei IG habe ich das Problem, dass oft keine Orders ausgeführt werden kön...
Jan EchnatonX, nice late answer of me: Make the stop loss a percentage of the close, like 100/...
guleny Hello I made some optimization to make it better. But there are 5 transacttion which incr...
stratobast Good afternoon everyone. Thanks Doctrading for your work. I have an issue while using this ...
stratobast My bad guys. I understood what was the problem. The indicator uses highs and lows for the Re...
samwarduk Has anyone tried this on Bitcoin GBP1? The results look amazing but every time mine trie...
Kris75 Hi Bolsatrilera, I love this indicator! Thanks; => did you develop a strategy around...
Doctrading AH ok, I think the ca3 is the same : ca3 = pB[1] < 0.2 and pB < 0.2 Best regards,
chromosome21 Hello everybody, First, thank you so much for all your advices, I'm a begginer in trading a...
bertrandpinoy bonjour j ai un probleme avec ce code modifié, apparement PRT ne veut pas...avez vous une so...
rispardin no entiendo como funciana este indicador, por favor alguien podria explicar como utilizarlo???
AVT No se trata de un solo indicador, pero cada linea muestra otra información, de abajo hacia ...
IV Mcm Your indicator is interesting, I evaluated its relevance with the squeeze to detect the phas...
Kris75 Hi Gabri I launched a very simple strategy based on the 3 bars trailing stop that you cre...
TimDeCat Hi. Has anyone coded a version that you could alter it to say 5 bar trailing stop? ie make ...
Nicolas Please open a new topic in forums so we can code it there, thanks.
finplus bonjour, il y a un problème à la fin du code avec elsif (close 0 then ... ne manque t il pas...
kj1988 Hello Nicolas, thank you for this useful indicator. Could you tell me how I can remove the...
Nicolas remove lines 101 to 103

Top