Screener ProRealTime achat/vente avec indicateur Tiger

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #258145 quote
    geroniman
    Participant
    Average

    bonjour, j’aimerais créer un screener avec l indicateur suivant en 2 parties un screener BUY et un SELL. Une fleche UP apparait sur la derniere bougie et on achete le lendemain sur breakout de la bougie . et un autre si fleche DOWN alors on vend sous le plus bas. Gracias




    //

    defparam calculateonlastbars = 5000

    if Close>( max(max(high,high[1]),max(high[1],high[1]) ))[1] then

    D=Min(Min(low,low[1]),Min(low[1],low[1]))

    elsif close<(Min(Min(low,low[1]),Min(low[1],low[1])))[1] then

    D=Max(Max(high,high[1]),Max(high[1],high[1]))

    else

    D=D[1]

    endif

    //plot1 = 0

    //plot2 = 0

     

    rge = averagetruerange[10](close)

     


     

     

    if (close crosses over D) then

    //plot1 = 1

    //DRAWARROWUP(barindex,low[1]-0.2*rge) coloured(250,250,0,250)

    DRAWTEXT(“▲”,BarIndex,low[1]-0.40*rge,dialog,bold,20) coloured(250,250,250,255)//(H1/H4 = +7) (1 min = -1)

    levelDwn=low[0]

    hh=high

     

    //else

    //plot1 = 0

    endif

    if (close crosses under D) then

    //DRAWARROWDOWN(barindex,high[1]+0.2*rge) coloured(250,250,0,250)

    DRAWTEXT(“▼”,BarIndex,high[1]+0.40*rge,serif,bold,20) coloured(250,250,250,255) //(H1/H4 = +7) (1 min //= -12

    //plot2=-1

    //else

    //plot2=0

    levelUP=high[0]

    ll=low

    endif

     

     

     

     

    return D,levelUp coloured(0,250,0) STYLE(dottedLINE),levelDwn coloured(250,250,0) STYLE(dottedLINE),hh coloured(0,250,0) STYLE(LINE),ll coloured(250,250,0) STYLE(LINE)


    #258160 quote
    Iván González
    Moderator
    Master

    Voilà. Pour une vente, il suffit de modifier la ligne de signal pour “close crosses under D”.

    upperBarrier = Max(High[1], High[2])
    lowerBarrier = Min(Low[1], Low[2])
    
    // Lógica principal del indicador
    IF Close > upperBarrier THEN
       D = Min(Low, Low[1])
    ELSIF Close < lowerBarrier THEN
       D = Max(High, High[1])
    ELSE
       D = D[1]
    ENDIF
    
    Signal = Close CROSSES OVER D
    
    SCREENER[Signal]
    
    
    robertogozzi thanked this post
    #258230 quote
    geroniman
    Participant
    Average

    MERCI BIEN iVAN ET UTILISEZ TOUS CE SCREENER GENIAL

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

Screener ProRealTime achat/vente avec indicateur Tiger


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
geroniman @geroniman Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by geroniman
1 week, 2 days ago.

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