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
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...
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.
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
6 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...
Domenec Claro Juanjo de todas maneras en deinversoratrader.com tienes estsos osciladores evolucionad...
Dron Hola Domenec, en la descripción hablas del indicador velas de colores, no lo encuentro en la...
Domenec Hola Dron mira en el blog deinversoratrader.com en formacion indicadores ahi hay varios grat...
Geronima Ortiz I watched the video three times, but I can not put the npips parameter as a variable. I do...
Geronima Ortiz I think the video is for an old version of prorealtime, the images do not correspond at all ...
Nicolas indicator1 = CALL “PRC_StopReversal”[npips, 1] and define npips in the optimization window ...
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
ullle73 nicolas, can you somehome make this to be in the background of the price chart?
jonpt88 none did that yet right?
Nicolas You can ask for a code modification on forums, please open a new topic with your request.
Toto le Heros Thanks Nicolas. I read somewhere that in the calculation, we should round the value of the A...
Nicolas aADX = round(adx[10])
bolsatrilera
6 years ago
Rainbow Oscillator
Rainbow Oscillator
1
Indicators
Maxime Baudin Interesting, thanks! Combine this indicator with the bollinger bands there is enough to make...
supertiti Bonsoir à tous For those who like me want to calibrate this indicator on a scale of 0 to ...

Top