Scalping with Parabolic SAR and Fibonacci

Scalping with Parabolic SAR and Fibonacci

This scalping indicator was requested in the indicators’ forum, it contains 2 parabolic SAR of different settings and plot automatically entry, stoploss and target levels calculated with Fibonacci retracement.

The rules are:

LONG

  • When price breaks up through the 0.02 & 0.2 PSAR you draw a Fibonacci retracement
  • from the closest last significant low (before pirce broke PSAR)
  • to the high of the bar that broke the PSAR.
  • This gives you your PROFIT TARGET at 161.8% Level
  • and your ENTRY ar 50% level
  • STOP = Last Signifcant low -2 Pips

SHORT

  • When price breaks down through the 0.02 & 0.2 PSAR you draw a Fibonacci retracement
  • from the closest last significant high (before pirce broke PSAR)
  • to the low of the bar that broke the PSAR.
  • This gives you your PROFIT TARGET at 161.8% Level
  • and your ENTRY ar 50% level
  • STOP = Last Signifcant high +2 Pips

 

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. JMat45 • 09/03/2019 #

    Thanks, Nicolas, looking forward to experimenting with it.

    • Nicolas • 09/03/2019 #

      well, the last part of the code could have been more simple, i just saw that i let some of the rough code in it.. but it does not impact the functionality.

  2. kalleklovn • 09/03/2019 #

    How can i get the chart to where my price is? it always open in new window and i tried adding price but did not work

    • Nicolas • 09/03/2019 #

      Add it on the price chart by using the wrench at the left upper side of the price chart.

  3. Pinus • 09/03/2019 #

    Nicolas you are the best. Always!

  4. Larenzu • 09/03/2019 #

    Bonjour Nicolas,

    Merci pour ce bel indicateur. Que donne t-il en backtest ?

    • Nicolas • 09/03/2019 #

      Aucune idée, c’est une traduction fidèle d’une stratégie de trading manuel qui a été demandé dans le forum.

  5. juanj • 09/03/2019 #

    Tried converting this into a strategy but based on results not sure if I did it right. Especially the part where I need to refresh the stop orders based on the plotbar variable (in order to keep them valid)

  6. juanj • 09/03/2019 #

    Defparam cumulateorders = False

    possize = 1
    plotbar = 10 //no of bars to keep stop orders valid
    buffer = 2*pointsize

    sarfast=SAR[0.02,0.02,0.2]
    sarslow=SAR[0.005,0.005,0.05]
    FibTarget = 1.618
    FibStop = 50 //Expressed as percentage

    //highs and lows
    if close sarfast and close[1] sarslow) or (barindex – startbar <= plotbar) then
    startbar = barindex
    irange = high – fibo0
    entry = fibo0 + (irange/(100/FibStop))
    itarget = fibo0 + irange*FibTarget
    istop = fibo0 – buffer
    Buy possize contract at entry-buffer stop
    Set stop ploss (entry-buffer) – (istop-buffer)
    Set target pprofit (itarget-buffer) – (entry-buffer)
    endif
    endif
    if (close sarfast[1]) Then//new bearish signal
    fibo0 = hh
    hh = 0 //reset hh
    if (close < sarslow) or (barindex – startbar <= plotbar) then
    startbar = barindex
    irange = fibo0 – low
    entry = fibo0 – (irange/(100/FibStop))
    itarget = fibo0 – irange*FibTarget
    istop = fibo0 + buffer
    Sellshort possize contract at entry+buffer stop
    Set stop ploss (entry+buffer) + (istop+buffer)
    Set target pprofit (entry+buffer) – (itarget+buffer)
    endif
    endif

    • bertrandpinoy • 09/03/2019 #

      hello juanj, can you send the code repair by your good care to try scalping please?

  7. juanj • 09/03/2019 #

    Format of the above code is broken, the greater than and smaller than signs have disappeared. I tried using the Add PRT code option but it doesn’t work for Library posts.

  8. Géraud Laveissiere • 09/03/2019 #

    Bonjour Nicolas, merci pour ton aide précieuse. J aimerai avoir un indic sur le graphe avec des buy et sell dés que 2 hakenashi vert sont cassés à la baisse ( sell) ou 2 HA rouge sont cassés à la hausse( buy). Existe t’il ce code sur PRT? Géraud

    • Nicolas • 09/03/2019 #

      Merci d’ouvrir un nouveau sujet sur le forum des indicateurs, on verra ce qu’on peut faire pour créer cet indicateur de signaux de trading.

  9. sachinssmp • 09/03/2019 #

    required above mt4 indicators & mt4 template plz

    • Nicolas • 09/03/2019 #

      we do not provide mt4 indicators on our website, you can download and use the above code on ProRealTime trading software: https://www.prorealtime.com/

  10. leofi • 09/03/2019 #

    Bonjour Nicolas, j’espère que vous allez bien.

    Je vous remercie pour ce code, j’ai une petite question au niveau d’une variable.

    À la ligne numéro 24 de votre code, vous déclarez la variable “ll” comme ceux-ci “ll=min(ll,low)”.
    Cependant, je me demande à quoi elle est égale ? Car vous l’utilisez comme argument dans la fonction min(args, args) toujours à la ligne 24.

    Car dans ma logique pour moi, elle est nulle car aucune valeur lui est attribué avant…
    J’imagine qu’il y a un concept que je dois ignorer propre au langage PRT.

    Pouvez m’éclairer svp ?

    Je vous remercie d’avance pour votre réponse et je vous souhaite une bonne journée,
    bien à vous, Tom’s – Leofi.

    • Nicolas • 09/03/2019 #

      il est égale à la valeur minimale entre lui-même et Low

    • leofi • 09/03/2019 #

      D’accord, je vous remercie pour votre réponse.
      Bonne journée, bien à vous, Tom’s – Leofi.

  11. rama • 09/03/2019 #

    what is the buy condition or sell condition for this
    can you suggest a code k1=1 buy and k1=-2 sell at those levels as mentioned in the code? at the moment is there no indicator it says?

  12. rama • 09/03/2019 #

    I would like to know at point 1 an alert or binary indicator so that I can place order

  13. maxlys • 09/03/2019 #

    Bonjour Nicolas, merci pour ce code qui a l’air intéressant. Comment ajouter dans le code l’indication pour qu’il ne s’affiche que sur une plage horaire spécifique, par exemple de 9h a 22 h ?
    De plus comment pourrions nous placer une alerte lorsque le signal Entry Apparait afin de ne pas être toujours en train de surveiller tous les graphes ? Merci encore pour tout le travail fourni

avatar
Register or

Likes

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

+25 more likes

Related users ' posts
proreal82 Testing it out, and sorry guys but this indicator is ridiculous. Don't use it!
rama I have tested this indicator , this is one of the best indicator for scalping , I tested on ...
Regan2020 Hi Rama, I am using the indicator now, but it doesn't seem to form live time, and only indic...
Nicolas Non ça n'est pas encore possible.
Denis Merci Nicolas.
Yann LB Bonjour à tous, Est-il possible de rajouter un morceau de code qui permette d'afficher (s...
Naren Yanan what is    diplus  diminus  please
Barney Has anyone tested this algon now when PRT 10.3 was released?
Yngve does anyone know if the issue with the TP/SL is resolved ?
JakeDB Answered my own question....Sorry about this question. 5 positions, take profit at 15, loss ...
maxxb sto facendo girare in demo questa strategia modificata a 10 minuti con stop e profit ottimiz...
Manuel9z Hello, this strategy improves with the SL 30 and the TP 10. I have done backtesting and it w...
eisi If i switch between different Markets, the Backgroundcolour will appear where it should not...
datageek How can I get alerts on colour change?
NAMBO40 Hello, I would like to add a 25 period SMA moving average. It's possible?
raviesco Hello Nicolas, Thanks for the post. Do you have an updated version of this screener/indi...
denmar Hi Could somebody please enlighten me how this code operates. I wish to use the code (is...
denmar Testing email notification to Denmar
David Black #gm74 Did you ever get this figured out? gm74
Adolfo Onrubia Ups! Sorry. Variable "S" is to set an specific Spread if needed. Could be "0", or the distan...
GraHal Hi Adolfo, big thank you for your code, but I am a bit confused. Spread is the difference b...
Meta Signals Pro Hi, For me there is a mistake here L32 maxriesgo = round(equity*riesgo) => round(equ...
Investment Account Wow great thanks ... looks good! Do I set the colour shades up from within the indicator 's...
avatar
Anonymous Thanks for your comments and yes, that is exactly how I set up the colour levels.
Vish Thanks I have added this in my watch list. Has anyone tried it yet ? Does it work on currenc...
Nicolas Dans l'onglet prix, choisir d'appliquer l'échelle qu'au prix uniquement.
Eloi MERCI
211 Really nice indicator Nicolas! Well done!
supertiti Bonjour Nicolas comme j'avais l'impression qu'il en manque un bout j'ai fais ça : Peux...
Nicolas Merci supertiti ! C'est juste, encore un ptit bug quelquepart ! :|
Nicolas Je pense que cela a été fait dans le forum il y a quelques temps, il faudrait le retrouver t...
besserwerden Hello, I want t use this screener, but only results for uptrend. Is there a possibillity to ...
besserwerden Hello Nicolas, I want t use this screener, but only results for uptrend. Is there a possibil...
Nicolas
9 years ago
Jean-Claude REGIS ok merci pour la rapidité de la réponse  cordialement    vu ça fonctionne me reste q...
Balian Merci pour l'indicateur J'ai l'impression qu'un truc cloche. Les triggers sont systémtiqeme...
Balian Tout va bien. J'avais mal lu
Nicolas
9 years ago
XBKZ Bonjour, Je trouve votre indicateur très intéressant. J'ai essayé de créer un autre indicat...
Nicolas Pour visualiser une variable, il suffit de l'ajouter dans la fonction RETURN et la plateform...
cruxtrader Hello Nicolas, Is this script Ninjatrader Compatible ?
Sofitech Bonjour. J'aimerais savoir s'il est possible de "truquer" un peu l'indicateur pour qu'il don...
Maz I actually like this very simple idea. It can also be useful for market micro-structure syst...
Nicolas Thanks Maz, I'll have a look tomorrow.
patrick3 Merci Nicolas pour cet indicateur, il est très utile pour voir les vagues

Top