Aide création screener ichimoku

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #141694 quote
    mpc327
    Participant
    New

    Bonjour, j’aimerais créer un screener  ichimoku qui suit les conditions suivantes :

     

    Conditions :

    -Nuage future haussier (ssa >ssb)

    – Cloture de la dernière Tenkan au dessus de la cloture de la dernière Kijun

    – Dernière clôture au dessus de: Tenkan, Kijun, ssa, ssb (si possible avec cassure du nuage par les prix récemment, ce qui éviterais d’avoir des valeurs déja en très forte tendance haussière)

    – Chikou au dessus de ssa, ssb, Tenkan , Kijun, cloture du prix la ou elle se trouve.

    [screenshot pour illustrer ce que je recherche a voir comme type de configuration parmis les actions choisis par le screener]

     

    Si quelqu’un pourrait m’aider ou me guider j’en serais ravis.

    En vous remerciant  🙂

    Capture-1.png Capture-1.png
    #141743 quote
    jacquesgermain
    Participant
    Senior

    Bonjour

    ci-joint screener journalier correspondant à votre demande avec recherche cassure du nuage sur 5 derniers jours.

     

    conversion=(highest[9](high)+lowest[9](low))/2
    base=(highest[26](high)+lowest[26](low))/2
    
    //SpanA future
    indicateur1=(conversion+base)/2
    //SpanB future
    indicateur2=(highest[52](high) + lowest[52](low))/2
    
    indicateur3=TenkanSen[9,26,52]
    indicateur4=KijunSen[9,26,52]
    indicateur5=SenkouSpanA[9,26,52]
    indicateur6=SenkouSpanB[9,26,52]
    indicateur7=close
    c1=indicateur1>=indicateur2
    c2=indicateur3>indicateur4
    c3=indicateur7>indicateur3
    c4=indicateur7>indicateur5
    c5=indicateur7>indicateur6
    c6=volume*indicateur7>5000
    c7=(close CROSSES OVER indicateur5)
    c8=(close CROSSES OVER indicateur6)
    D= c7 and c8
    screener[c1 and c2 and c3 and c4 and c5 and c6 and (D or D[1]or D[2] or D[3] or D[4] or D[5])]
    
    Nicolas thanked this post
    #141752 quote
    jacquesgermain
    Participant
    Senior

    révision1 en ajoutant chikou >que tout

    conversion=(highest[9](high)+lowest[9](low))/2
    base=(highest[26](high)+lowest[26](low))/2
    
    //SpanA future
    indicateur1=(conversion+base)/2
    //SpanB future
    indicateur2=(highest[52](high) + lowest[52](low))/2
    
    indicateur3=TenkanSen[9,26,52]
    indicateur4=KijunSen[9,26,52]
    indicateur5=SenkouSpanA[9,26,52]
    indicateur6=SenkouSpanB[9,26,52]
    indicateur7= Close
    c1=indicateur1>=indicateur2
    c2=indicateur3>indicateur4
    c3=indicateur7>indicateur3
    c4=indicateur7>indicateur5
    c5=indicateur7>indicateur6
    c6=indicateur7>= indicateur7[26]
    c7=volume*indicateur7>5000
    c8=indicateur7 CROSSES OVER indicateur5
    c9=indicateur7 CROSSES OVER indicateur6
    c10=close>=indicateur3[26]
    c11=close>=indicateur4[26]
    c12=close>=indicateur5[26]
    c13=close>=indicateur6[26]
    D= c8 and c9
    screener[c1 and c2 and c3 and c4 and c5 and c6 and c7 and c10 and c11 and c12 and c13 and (D or D[1]or D[2]or D[3]or D[4])]
    
    Nicolas thanked this post
    #141762 quote
    mpc327
    Participant
    New

    Merci énormément, c’est très gentil de votre part !

    fabuleuxb thanked this post
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.

Aide création screener ichimoku


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
mpc327 @mpc327 Participant
Summary

This topic contains 3 replies,
has 2 voices, and was last updated by mpc327
5 years, 6 months ago.

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 08/15/2020
Status: Active
Attachments: 1 files
Logo Logo
Loading...