Fibonacci pivot points

Fibonacci pivot points

The Fibonacci pivot points indicator is made of 38.2% and 61.8% extension of the main pivot line, for the support (S1,S2) and resistance (R1, R2) ones. This indicator show only the pivot points on the current day from the previous OHLC day values.

Coded by member request on forum.

 

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. supertiti • 03/09/2016 #

    Bonjour à tous,
    Ne peut-on avoir un code des points pivots de Fibonacci qui fonctionne en “end of day” ?
    merci

    • Nicolas • 03/09/2016 #

      Bonjour supertiti, j’ai peur de ne pas comprendre ce que tu souhaites ?

  2. supertiti • 03/09/2016 #

    Bonjour Nicolas
    Comment fait on pour ajouter une image dans cette rubrique pour illustrer mon propos?
    Le code ci dessus me donne une belle ligne droite horizontale avec un décrochement vers le haut sur le dernier jour.
    nota : je n’utilise pas l’intraday

    • Nicolas • 03/09/2016 #

      Il te suffit de remplacer les valeurs de dh et de dl avec les prix que tu souhaites utiliser pour calculer les retracements de Fibonacci.

  3. supertiti • 03/09/2016 #

    une ligne de code m’aiderait bien car là je n’arrive à rien de concret !  pour moi dh et dl sont les valeurs en clôture,

    • Nicolas • 03/09/2016 #

      C’est déjà le cas, ce sont les valeurs en clôture de la journée qui précède. Dans le cas présent, dh=le plus haut et dl=le plus bas. C’est en effet un indicateur qui fonctionne en intraday, si tu veux voir quelque-chose dans un timeframe supérieur à partir du daily, tu ne verras rien, puisque ces valeurs changent chaque jour et donc à chaque bougie journalière.

  4. supertiti • 03/09/2016 #

    J’ai ce code de Gilles Santacruz de Boursikoter.com qui fonctionne en daily par exemple, j’utilise aussi celui de tradingview en journalier(une boite noire).Initialement je voulais juste faire ressortir la ou les dernieres valeurs du point pivot Fibo pour ne pas charger le graphe des prixA la question de remonter des images ici ce n’est pas possible ?Voici le code Gilles :
    Codage prorealtime
    de ikiu91 » Mer 29 Sep 2010 23:41

    //////////////////////////////////////////////////////////////////////////////////////////
    Pivot=(Close[1]+High[1]+Low[1])/3
    FR3 = Pivot + 1.000 * (High[1]-Low[1])
    FR2 = Pivot + 0.618 * (High[1]-Low[1])
    FR1 = Pivot + 0.382 * (High[1]-Low[1])
    FS1 = Pivot - 0.382 * (High[1]-Low[1])
    FS2 = Pivot - 0.618 * (High[1]-Low[1])
    FS3 = Pivot - 1.000 * (High[1]-Low[1])

    return Pivot as \"pivot\", FR3 as \"Resistance 1\",FR2 as \"Resistance 2\",FR1 as \"Resistance 3\",FS1 as \"Support 1\",FS2 as \"Support 2\",FS3 as \"Support 3\"

    ///////////////////////////////////////////////////////////////////////////

     

  5. robdav • 03/09/2016 #

    Hi Nicolas,

    I love these pivot points but most of the time I add it to chart, it messes up the scale and it’s very hard to get it back to normal without removing it again.

    I can’t see what is wrong with the code but was hoping you might be able to re-test it and see if you can re-produce the issue?

    Many thanks

    Rob

    • Nicolas • 03/09/2016 #

      This is not an issue, use “vertical autoscaling” to use price only (in price settings).

  6. robdav • 03/09/2016 #

    Perfect, thank you.

  7. Ciccio • 03/09/2016 #

    Is it possible to avoid to have that (bad) vertical line at the beginning?

    • Nicolas • 03/09/2016 #

      at the beginning of the code, add:
      p = undefined
      S1 = undefined
      etc.
      and repeat this kind of statement of each of the variables in the RETURN instruction.

    • Ciccio • 03/09/2016 #

      OK
      Thanks

  8. Ciccio • 03/09/2016 #

    Sorry for another question
    What’s the way to add a description on each horizontal line (at the beginning or at the end)? I mean P, S1, S2, R1, R2

  9. Ciccio • 03/09/2016 #

    Can you give me a helping hand just to write the first one on the Pivot line?
    I cannot devise how to determine (and write into the parenthesis) what is the X position and the Y position…

  10. Ciccio • 03/09/2016 #

    DRAWTEXT(“P”,X,Y,Dialog,Bold,20) coloured(0,0,0,255)
    what has to be X= ? and Y=?

    • Nicolas • 03/09/2016 #

      There are plenty of examples on the website… Anyway, let me take your hand and put you right in front of an example ..
      https://www.prorealcode.com/prorealtime-indicators/fibonacci-pivots-points-4-hours-daily-weekly-monthly/

  11. Ciccio • 03/09/2016 #

    I didn’t see it, and that’s what I needed
    Thanks a lot man

  12. Eloi • 03/09/2016 #

    Bonjour Nicolas,
    Pourquoi mon graph se mets en tout petit lorsque j’applique l’indicateur ?

    • Nicolas • 03/09/2016 #

      Dans l’onglet prix, choisir d’appliquer l’échelle qu’au prix uniquement.

  13. Eloi • 03/09/2016 #

    MERCI

  14. Frankiesc • 03/09/2016 #

    Thanks

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Nicolas
11 months ago
Maxime Baudin Well done Nicolas, creative!
Stenozar Hi Nicolas, please can you explain how to read/use this indicator? thanks!
smp I also have an End Of Day (EOD) cash pivot indicator for use on cash markets; this indicator...
cdc.andersson Hej! Jag försöker lära mig att koda PRT. Jag vill testa en strategi med RSI-värde, ATR-värde...
Swingforfortune Du kan väl jämföra om open > close (röd) eller open < close (grön)
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...
Bhanu Pratap Great Work Sir, Hats Off.
bolsatonimora2 Hi Roberto, It is possible to modify this indicator which it marks the supports and resist...
robertogozzi What do you mean by "very high volume"? What do you want to be printed exactly?
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...
mscharstrom Hi @robertogozzi, I really love this indicator. However, I'd like to tinker with it to fit ...
Ahimsa Hi Roberto I cannot thank you enough for writing this code. It could help me more than you ...
Nicolas With PRT v11, you have to click on "price" at the upper left side of the price chart.

Top