aide ,pour créer un SCREENER avec Williams High Low swing points

Forums ProRealTime forum Français Support ProScreener aide ,pour créer un SCREENER avec Williams High Low swing points

Viewing 3 posts - 1 through 3 (of 3 total)
  • #53333

    Bonjour . J’ aimerai qu’ on puisse me faire une SCREENER ,qui me détecte toutes les Actions avec une ( flêche ,plus ellipse.) je vous met ci-dessou ,le code de l’ indicateur d’un des membres https://www.prorealcode.com/prorealtime-indicators/williams-highs-lows/  . Cordialement .

    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    //computation of the radius to draw ellipses
    radius=average[200](range)/4
     
    //formula to compute short term swing points
    if (high>alto[1]) and not (high<high[1] and low>low[1]) then
    alto=high
    basso=low
    markup=barindex
    markhigh=high
    endif
    if (low<basso[1]) and not (high<high[1] and low>low[1]) then
    alto=high
    basso=low
    markdown=barindex
    marklow=low
    endif
     
    if alto<alto[1] and trend=1 then
    trend=0
    drawarrowdown(markup,markhigh)
    mediummarkup=shortmarkup
    shortmarkup=markup
    longmarkhigh=mediummarkhigh
    mediummarkhigh=shortmarkhigh
    shortmarkhigh=markhigh
    //intermediate high swing points
    if longmarkhigh<mediummarkhigh and mediummarkhigh>shortmarkhigh then
      DRAWELLIPSE(mediummarkup1, mediummarkhighradius, mediummarkup+1, mediummarkhigh+radius)
    endif
    endif
     
    if basso>basso[1] and trend=0 then
    trend=1
    drawarrowup(markdown,marklow)
    mediummarkdown=shortmarkdown
    shortmarkdown=markdown
    longmarklow=mediummarklow
    mediummarklow=shortmarklow
    shortmarklow=marklow
    //intermediate low swing points
    if longmarklow>mediummarklow and mediummarklow<shortmarklow then
      DRAWELLIPSE(mediummarkdown1, mediummarklowradius, mediummarkdown+1, mediummarklow+radius)
    endif
    endif
     
     
    drawcandle(open,high,low,close)
    return
    #53388

    Ce screener vient d’être ajouté à la bibliothèque de screener prorealtime du site :  https://www.prorealcode.com/prorealtime-market-screeners/williams-swing-points/

    #53518

    Merci Nicolas .

Viewing 3 posts - 1 through 3 (of 3 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login