ZigZag SupDem (supply and demand zones)

v10.3
ZigZag SupDem (supply and demand zones)

The ZigZag SupDem Zones Indicator detects support and resistance (supply and demand) zones using peaks and troughs formed by the ZigZag.
Depending on the timeframe used, it is necessary to set the necessary percentage to form a new peak or trough, by default that is set to 3%, ideal for most instruments on a unit of daily time.

The detection will be done only on the last periods set by the variable “lookback”.
The detection is validated if the indicator finds at least “minPoints” troughs or peaks not more distant than at most “threshold” in percentage.

  • percent = 3 (percentage change of ZigZag to get new peaks and troughs, new swings)
  • lookback = 200 (the period to search for supports and resistances)
  • threshold = 1 (percentage to validate another zigzag from the one previously found to validate a support or a resistance)
  • minPoint = 2 (at least it takes 2 swings of the same type, located one another less than “threshold” percent to validate a support or resistance)

 

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. Makabro • 03/13/2019 #

    Hola Nicolas,tengo un problema cuando importo el .itf pone que esta instalado correctamente,pero cuando lo añado ,se añade debajo del precio en una ventana nueva,como si fuese un rsi o un macd…me salen las velas de frenada y compra, pero me salen por abajo no en el mismo precio…como podría arreglarlo ?
    Felicidades por el trabajo realizado.

  2. Nacho Bosquet • 03/13/2019 #

    Hola Nicolas,…. ¿Tienes disponible algún screener para ondas de wolfe? Haces un trabajo increíble!!!! Gracias!!!

  3. pedrohcarvalho@yahoo.com.br • 03/13/2019 #

    Hola Nicolas, por si acaso tienes el código de la funccion ‘ ZIgZAG’ ? O… sabrias como desarrollar solamente esta funccion? Muchas Gracias!!!

    • Nicolas • 03/13/2019 #

      Esta función es interna y no puede reproducirse con el mismo comportamiento por código (repita en tiempo real la última parte superior o inferior).
      Los indicadores de fractales también son un buen enfoque para encontrar las partes superiores e inferiores, hay muchos indicadores basados en ellos en la biblioteca.

  4. MrMUCKIE • 03/13/2019 #

    Would there be a way to derive these support/resistance figures for automatic trading?

    • Nicolas • 03/13/2019 #

      That’s not possible because the code uses ZigZag instruction from the platform which is not reliable for automatic trading (and not allowed by the system).

  5. MrMUCKIE • 03/13/2019 #

    Thanks Nicolas. Do you have any idea of how I could generate support/resistance figures for automatic trading?

    • Nicolas • 03/13/2019 #

      Try fractals, swing high/low points, donchian channel, ..

  6. IV Mcm • 03/13/2019 #

    Thank you for this indicator Nicolas, very useful for Range detection.

  7. MrMagic • 03/13/2019 #

    Hi @Nicolas , I tried importing the ITF files and even directly copying the above indicator into my PRT and it came up blank both times. Is there something I’m missing?

    • Nicolas • 03/13/2019 #

      Try to modify the settings? The percentage of zigzag might be too large?

    • MrMagic • 03/13/2019 #

      Sorry for the late response. I gave up using it. Tried modifying the settings but it still came up at the bottom of the chart blank. It’s also comes up different from the photo above where it creates a different space for the indicator rather than show on the price as above.

    • Nicolas • 03/13/2019 #

      If you add it on the price chart (by using the wrench on the left upper side of the price chart), then it should comes up on the main chart 🙂

  8. MrMagic • 03/13/2019 #

    Thanks. On point. 🙂

  9. Marie Chidais • 03/13/2019 #

    Modifs:
    ajout du prix
    A faire tourner en 1 heure 50 unités dans tout petite fenêtre.
    Alors merci au créateur.

    //PRC_ZigZag SupDem | indicator
    //13.03.2019
    //Nicolas @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge

    defparam drawonlastbaronly=true
    defparam calculateonlastbars=1000

    // — settings
    //ecartmini = 3 //zigzag ecartmini
    //lookback = 100 //max history lookback
    //eliminanciens = 1 //price ecartmini between 2 ZZ points
    //minPoint = 2 //minimal points to confirm S/R
    //showSupport = 1 //plot support zones or not? (0=false;1=true)
    //showResistance = 1 //plot resistance zones or not? (0=false;1=true)
    // — end of settings

    //zz s/r
    zz = ZigZag[ecartmini](customclose)
    p = zzzz[2]
    t = zz>zz[1] and zz[1]<zz[2]
    if p then
    top = zz[1]
    endif
    if t then
    bottom = zz[1]
    endif

    once minPoint = max(2,minPoint)

    for i = 1 to lookback do
    if showResistance then
    //new peak
    if p[i] then
    topdata = top[i]
    hhtop = topdata+(customclose[i]*(eliminanciens/100))
    lltop = topdata-(customclose[i]*(eliminanciens/100))

    resttest=0
    for y = i to lookback do
    resttest = resttest + (top[y]lltop)
    if resttest>=minPoint then
    //drawarrowdown(barindex[i],topdata) coloured(255,0,0)
    drawsegment(barindex[lookback],topdata,barindex[1],topdata) coloured(255,0,0)
    DRAWTEXT(“#topdata#”,barindex+5,topdata,SansSerif,Bold,14)coloured(153,153,0)
    break
    endif
    next
    endif
    endif
    if showSupport then
    //new through
    if t[i] then
    data = bottom[i]
    hh = data+(customclose[i]*(eliminanciens/100))
    ll = data-(customclose[i]*(eliminanciens/100))

    suptest=0
    for y = i to lookback do
    suptest = suptest + (bottom[y]ll)
    if suptest>=minPoint then
    //drawarrowup(barindex[i],data) coloured(0,255,0)
    drawsegment(barindex[lookback],data,barindex[1],data) coloured(0,255,0)
    DRAWTEXT(“#data#”,barindex+5,data,SansSerif,Bold,14)coloured(153,153,0)
    break
    endif
    next
    endif
    endif
    next

    hprice = highest[lookback](customclose)
    lprice = lowest[lookback](customclose)
    drawsegment(barindex[lookback],hprice,barindex,hprice)
    DRAWTEXT(“#hprice#”,barindex+5,hprice,SansSerif,Bold,16)coloured(153,153,153)
    drawsegment(barindex[lookback],lprice,barindex,lprice)
    DRAWTEXT(“#lprice#”,barindex+5,lprice,SansSerif,Bold,16)coloured(153,153,153)

    prix = Close
    return prix as “supports et résistances” //coloured(153,153,0)
    //

  10. datageek • 03/13/2019 #

    How do I change the thickness of the line or change it too dashed lines? Kind regards

  11. lkiklkik • 194 days ago #

    NE fonctionne pas ( ou plus … )

    • Nicolas • 192 days ago #

      il faut modifier toutes les références à top par itop et bottom par ibottom. Ces mots étant désormais réservés à des instructions, dut à l’évolution du langage.
      En théorie en téléchargeant le fichier itf attaché et en l’important la modification se fait d’elle même.

avatar
Register or

Likes

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

+2 more likes

Related users ' posts
P. Marlowe Impressive work. Accurate, interesting, good background. You hit the nail on the head again....
14starwberryhill Such a wonderful work, thanks Ivan..............
Iván Hi You should delete from the indicator code all drawing functions and all variables not us...
Iván I've created a screener to show [longcondition or shortcondition]
Chrisinobi Hallo Ivan, Danke das ist Perfekt !! Kannst du bitte in der Screener-Bibliothek die itf. hoc...
philippe59139 Bravo super travail
gidien
3 months ago
gidien Thanks for the hint. I think i know now, why this happen. The "settings" block was added by ...
LucasBest Thank you for sharing your work, both original and very disconcerting. When I went through t...
gidien Hello LucasBest, thanks for your comment. Point 1: Yes your are right. The Zigzag ve...
Nicolas Il doit y avoir impérativement plus d'unités affichées que le paramètre "BarsLimit". Ceci ét...
steffen_burat Hello Nicolas, I have a cumulative histogram update problem, the indicator often updates ...
taklause Hello Nicolas, if I try to use your indicator in a trading system, the error on prc pops up ...
jonpt88 hI . THIS LOOKS GOOD. Thanks. Just one doubt: is this kind of impulse indicator - does it sh...
effegi
1 year ago
effegi A good alternative solution, even I had thought of the variant that uses high and low (proba...
Seb did you automate that 1-2-3 strategy? how is that working for you?
effegi Not yet, I'm busy developing other strategies/indicators at the moment, but it's on my to-do...
StephFor //ind1 = ZigZagPoint[2*averagetruerange[200]](close) avr = 3 //3% ind1 = ZigZag[avr](close...
Manu L. @Steph un grand merci pour ton aide mais :-( J'ai copier le code tel quel mais cependant j...
AlphaMauss Je n'ai pas réussi à faire fonctionner l'indicateur avec le code fourni en commentaire sur P...
fazel53 How do i attach this indicator to my mt5 platform?
Nicolas You can't! All indicators here are for ProRealTime trading platform: https://www.prorealtime...
mistersylv What parameter should we change to make another channel appear in the higher or lower time u...
carpentier Joffrey Bonjour à tous, Avant tout merci pour ce travail, cependant je suis bloqué quand je l'insta...
carpentier Joffrey Re, C'est ok, j'ai trouvé mon erreur... Cependant sur quel base peut on calculer son CALC...
Aragorna Hi Nicolas, How is it possible to use it in a higher timeframe plotted on a lower timeframe?...
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,...
Bard Very interesting approach Vonasi! I'm getting a 404 error when trying to download though?
Vonasi I just tested and I was able to download with no error.
Psari Hi Vonasi, I am a newbie and was wondering whether you could possibly help me with this pro...
Vonasi Yes that was the issue. I have posted an updated ITF file here: https://www.prorealcode.com/...
crolakstrading @vonasi Thank you for fixing the issue! This is a great indicator.
gregoire good evening vonasi , I had made the request to create this indicator a few years ago and I ...
Giogio hello dear Vonasi, thank you for your indicator, can I ask you for some help in order to let...
Pottar24 HI Vonasi I would like to know how can this algorithm give me the value of the last max e mi...
parthapersonal Hello Vonasi, Great work. Is it possible to replicate this to get values of "Price Line" (1...
tobytarczy Hi Vonasi, Sounds lovely, I race yachts around europe myself. Most regattas cancelled unfor...
mlouys Hello Vonasi thank for your work ! A question how can we do it for minutes ( or 15 min or x ...
Vonasi I think that would be possible but probably in a whole new indicator as detecting when a new...
Vonasi That should be possible - I'll add it to my list to work on!
thierrybl Thanks a lot
B-ling1 Hi Vonasi, I love this indicator - good job! Just one question: If I want the monthly OHLC L...

Top