Screener BreakOut Donchian + ADX >30

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #60382 quote
    bullrott
    Participant
    New

    Bonjour,

    Mes connaissances en programmation étant nulles, je fais appel à vous pour créer un screener composé du breakout du canal de donchain (déjà posté sur le forum) +  ADX supérieur à 30.

    Voilà ce que j’ai trouvé sur le forum pour le breakout :

    //Screener Breakout Donchian con volumen by@Fr7Travis-01/11/2017
     
    CanalDonchian= HIGHEST[20](HIGH[1])
    VolumenPorcentaje = ((volume-Average[10](volume))/volume)*100
    c1 = (close >= CanalDonchian)
    c2=volume>Average[10](volume)
    c3=VolumenPorcentaje>20
     
    criteria = VolumenPorcentaje
     
    SCREENER[c1 and c2 and c3] (criteria AS "VolumenPorcentaje")

    Mais comment  rajouter l’ADX > 30 dans cette écriture , j’avoue que ça m’échappe.

    Merci pour votre aide par avance

    #60412 quote
    Nicolas
    Keymaster
    Legend

    Tu trouveras ci-dessous le code modifié (j’ai simplement ajouté la condition “c4”), attention toutefois ce screener embarque aussi des conditions liées au Volume.

    //Screener Breakout Donchian con volumen by@Fr7Travis-01/11/2017
     
    CanalDonchian= HIGHEST[20](HIGH[1])
    VolumenPorcentaje = ((volume-Average[10](volume))/volume)*100
    c1 = (close >= CanalDonchian)
    c2=volume>Average[10](volume)
    c3=VolumenPorcentaje>20
    c4=ADX[14]>30
     
    criteria = VolumenPorcentaje
     
    SCREENER[c1 and c2 and c3 and c4] (criteria AS "VolumenPorcentaje")
    bullrott thanked this post
    #60415 quote
    bullrott
    Participant
    New

    Oui, l’indication sur les volumes me convient bien aussi. 🙂

    Merci beaucoup pour ton aide Nicolas, je teste ça dès ce soir .

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Screener BreakOut Donchian + ADX >30


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
bullrott @bullrott Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by bullrott
8 years, 7 months ago.

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 01/24/2018
Status: Active
Attachments: No files
Logo Logo
Loading...