FIBO EASY RETURN

v10.3
FIBO EASY RETURN

FIBO Easy Return

This indicator draws the longterm and the shortterm Fibonaccci levels based on highest highs and lowest lows.

Parameters for longterm and shortterm can be changed.

Default longterm: 200/100

Default shortterm: 50/50

It’s no surprise to see the candles bounce off the levels

Add the Indicator to your price.

Sorry for my basic english 🙂

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. swapping • 11/06/2017 #

    Hello Van Salt
    Thank you for this indicator. Very interest for add into price and follow exactily the level of pullback…

    your english is not very strong but i understand easily 😉

  2. DaxRider • 11/06/2017 #

    nice job thanks

  3. Bianca • 11/06/2017 #

    super well done…and your english…much more better then mine..
    1) what about to add some fibonacci expansions on the daily candle?
    2) reccomended on? image isnot clear..

  4. Van Salt • 11/06/2017 #

    Hi Bianca, the indicator shows you some interesting cluster-zones from long- and shortterm fibo-levels. The is no special recommandation to a special share.
    The values are different. But exactly that shows the indicator.
    It still follows a Fibo Backtest and a Fibo Screener. So you can test different shares and the best fibo level to buy or sell.
    I will see, if i add the expansions to the indicator. Nice idea!

  5. Vinci1966 • 11/06/2017 #

    Questo indicatore è molto interessante. Mi sono permesso di apportare alcune modifiche nell’intento di miglioralo. L’intento è stato quello di avere il grafico pulito e i livelli di fibonacci per entrambe le direzioni.
    Riporto qui in codice dell’indicatore:

  6. Vinci1966 • 11/06/2017 #

    // VAN SALT´s <> Version 20171105
    // This Indicator draws the Shortterm and Longtern Fibonacci Levels based on two Highest High and Lowest Low
    // Default Parameter Shortterm HH 50 / LL 50
    // Default Parameter Longterm HH 200 / LL 100
    // The Parameters can be changed!

    // Modificato, Integrato e Testato Da Vincenzo Giordano
    // 26 ottobre 2020

    defparam drawonlastbaronly = true

    hhLT = highest[LongtermHH](high)
    llLT = lowest[LongtermLL](low)
    hh = highest[ShorttermHH](high)
    ll = lowest[ShorttermLL](low)

    LTfib236 = (hhLT-llLT)*0.236
    LTfib382 = (hhLT-llLT)*0.382
    LTfib500 = (hhLT-llLT)*0.5
    LTfib618 = (hhLT-llLT)*0.618
    LTfib786 = (hhLT-llLT)*0.786
    LTfib764 = (hhLT-llLT)*0.764
    LTfib214 = (hhLT-llLT)*0.214

    fib214 = (hh-ll)*0.214
    fib236 = (hh-ll)*0.236
    fib382 = (hh-ll)*0.382
    fib500 = (hh-ll)*0.5
    fib618 = (hh-ll)*0.618
    fib764 = (hh-ll)*0.764
    fib786 = (hh-ll)*0.786

    LTlevel236 = hhLT-LTfib236
    LTlevel382 = hhLT-LTfib382
    LTlevel500 = hhLT-LTfib500
    LTlevel618 = hhLT-LTfib618
    LTlevel786 = hhLT-LTfib786
    LTlevel764 = hhLT-LTfib764
    LTlevel214 = hhLT-LTfib214

    level214 = hh-fib214
    level236 = hh-fib236
    level382 = hh-fib382
    level500 = hh-fib500
    level618 = hh-fib618
    level786 = hh-fib786
    level764 = hh-fib764

    drawtext(” < 00,00",barindex,hhLT,SansSerif,Bold,11) coloured(0,0,204)

    drawtext(" < 23,60",barindex,LTlevel236,SansSerif,Bold,11) coloured(0,0,204)

    drawtext(" < 38,20",barindex,LTlevel382,SansSerif,Bold,11) coloured(0,0,204)
    drawtext(" < 50,00",barindex,LTlevel500,SansSerif,Bold,11) coloured(0,0,204)
    drawtext(" < 61,80",barindex,LTlevel618,SansSerif,Bold,11) coloured(0,0,204)

    drawtext(" < 78,60",barindex,LTlevel786,SansSerif,Bold,11) coloured(0,0,204)

    drawtext(" <100,00",barindex,llLT,SansSerif,Bold,11) coloured(0,0,204)

    drawtext(" <100,00",barindex,hhLT,SansSerif,Bold,11) coloured(255,0,0)

    drawtext(" < 78,60",barindex,LTlevel214,SansSerif,Bold,11) coloured(255,0,0)
    drawtext(" < 61,80",barindex,LTlevel382,SansSerif,Bold,11) coloured(255,0,0)
    drawtext(" < 50,00",barindex,LTlevel500,SansSerif,Bold,11) coloured(255,0,0)
    drawtext(" < 38,20",barindex,LTlevel618,SansSerif,Bold,11) coloured(255,0,0)
    drawtext(" < 23,60",barindex,LTlevel764,SansSerif,Bold,11) coloured(255,0,0)

    drawtext(" < 00,00",barindex,llLT,SansSerif,Bold,11) coloured(255,0,0)

    drawtext(" < 00,00",barindex-1,hh) coloured(0,0,255)
    drawtext(" < 23,60",barindex-1,level236) coloured(0,0,255)
    drawtext(" < 38,20",barindex-1,level382) coloured(0,0,255)
    drawtext(" < 50,00",barindex-1,level500) coloured(0,0,255)
    drawtext(" < 61,80",barindex-1,level618) coloured(0,0,255)
    drawtext(" < 78,60",barindex-1,level786) coloured(0,0,255)
    drawtext(" <100,00",barindex-1,ll) coloured(0,0,255)

    drawtext(" < 100,00",barindex-1,hh) coloured(255,0,0)
    drawtext(" < 78,60",barindex-1,level214) coloured(255,0,0)
    drawtext(" < 61,80",barindex-1,level382) coloured(255,0,0)
    drawtext(" < 50,20",barindex-1,level500) coloured(255,0,0)
    drawtext(" < 38,20",barindex-1,level618) coloured(255,0,0)
    drawtext(" < 23,60",barindex-1,level764) coloured(255,0,0)
    drawtext(" < 00,00",barindex-1,ll) coloured(255,0,0)

    RETURN hhLT coloured(255,0,0) STYLE(dottedline,1) as "LT HIGH", llLT coloured(0,250,0) STYLE(dottedline,1) as "LT LOW", hh STYLE(line,1), ll STYLE(line,1) as "SHT LOW"

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
smp I also have an End Of Day (EOD) cash pivot indicator for use on cash markets; this indicator...
Jigsaw20000 Bonjour, Je voudrais mettre le liens du code en format .itf mais je n'y arrive pas , quelqu'...
Corto78 Il faut aller dans la liste des ProBacktest & Trading Automatique (là ou tu as créer ton...
Malloc Bonjour, Votre système a l'air intéressant et prometteur mais en l'état il est inutilisable...
IV Mcm I don't speak English and the translation is not clear. Do you have a different turn of ...
IV Mcm stonk ?
avatar
Anonymous Thanks very much for sharing, look forward to testing this idea out.
mistersylv What parameter should we change to make another channel appear in the higher or lower time u...
Nicolas Oui c'est possible. Merci de ne pas poster des demandes qui sont hors sujets. Pour les deman...
Igor Merci pour cet itf. Question : comment faire pour instruire un screener ?
Nicolas tester le croisement du Close avec la première valeur de l'indicateur : "TrailingStop", faci...
Nicolas Pour créer des alertes, vous pouvez suivre ce petit tutoriel : https://www.prorealtime.com/f...
thibault76 Bonjour Nicolas, cette stratégie est intéressante. Par contre, en 2022, le code ne fonction...
Nicolas Aucun message d'erreur pour ma part en version 11.1. Tu es certain de créer un code d'indica...
Meta Signals Pro Pleasure ! Please let us know if you make good trades with it and if you see improvements we...
francis59 Bonjour, Bonjour, comment puis-je créer un screener basé sur cet indicateur, qui affiche le...
Trader Sab I am curious to try it how, however I get an error message for line 47 and 48 - drawsegment,...
rama what is the buy condition or sell condition for this can you suggest a code k1=1 buy and k1...
rama I would like to know at point 1 an alert or binary indicator so that I can place order
maxlys Bonjour Nicolas, merci pour ce code qui a l'air intéressant. Comment ajouter dans le code l'...
Dari when I put the indicator does not put it on the price, sn in a new box like many indicators....
Nicolas by adding it on price instead. Use the wrench on the left upper side of your price chart.
Nicolas Add indicator on price doesnt require any specific type of subcription. Click on the wrench ...
tahiti bonjour j'ai une petite question comment peux on enlevé la bar blanche sur la bougie en cour...
sixeight Hi Kris, is there a way to increase the number of rows? I get a loop error
Kris75 Hi, This is great !! anyone ever developped a strategy about it ???
swapping hello Kris75, not that I know but it is possible to make a scenario ;)
digitation Hi swapping, Thanks for sharing this useful tool. I was wondering how difficult it would be...
Nicolas
5 years ago
swapping https://www.prorealcode.com/topic/prc_quickfibtl/ Please Hans63 and robdav follow to uppe...
Hans63 Thank you swapping
FREDNC @Nicolas merci pour se remarquable indicateur, reste à voir comment on va pourvoir l'intégre...
swapping fib1236 = (hiday-lowday)*1.236+lowday DrawSegment(startbar,fib1236,barindex,fib1236) colou...
swapping Oups ! Nicolas il y a un problème avec l'insertion de code en utilisant le bouton [Add PRT ...
swapping fib1236 = (hiday-lowday)*1.236+lowday DrawSegment(startbar,fib1236,barindex,fib1236) colour...
Nicolas Sure, I suggest you open a new topic in the forum to discuss about your ideas.
hdgm Bonjour Nicolas, est ce que l'on peut en faire une stratégie de trading automatisée ?
Nicolas Non, pas en utilisant l'indicateur zigzag traditionnel de la plateforme.
dertopen HI Wwhy you said avoiding bear market? Don't you think that we can use this code for short...
maurizio dove si trova lo screener?
macdopa Thanks...
Nicolas Please open a new forum topic, and respect the posting rules. Add a precise description of w...
FXTT ok will do, apologies, as I said I am new here. many thanks
Noobywan Version v2 including requested additions: https://www.prorealcode.com/prorealtime-indicators...
marinober Ciao. avrei necessità di usare questo indicatore in intraday . Dovrei poter dare un prezzo d...
Francesco78 I did a little bit of work on that and now the results looks better and more stable. Please...
Francesco78 I did a little bit of work on that and now the results looks better and more stable. Please...
Khaled Hi Francesco , thank you for sharing your hard work. Any idea why all orders are executed at...
Derek Clarification: Automatic rollover will be into the nearest forward but I prefer the farthes...
gatowman Hallo Derek, ich bin neu hier, wo finde ich die beiden Indikatoren? kansst du sie als itf p...
bertrandpinoy BONSOIR j ai tenté votre modification mais PRT ne l accepte pas "erreur de syntax" pouvez vo...
Nicolas Use the wrench of the price chart! Upper left of the window
Dymjohn The wrench shows options for the components of the indicator not how to show in the main cha...
Nicolas http://www.prorealcode.com/topic/overlapping-indicators/  

Top