scrrener à partir de cet indicateur TIGER

Forums ProRealTime forum Français Support plateforme ProRealTime scrrener à partir de cet indicateur TIGER

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

     

    Bonsoir, qui pourrait créerun screener BUY et un SELL à partir de cet indic? Merci. ( sur actions americaines en daily)

    //
    defparam calculateonlastbars = 1000
    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.3*rge) coloured(250,250,250,250)
    DRAWTEXT(“.”,BarIndex,low[1]-0.5*rge,serif,bold,1) 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.3*rge) coloured(250,250,250,250)
    DRAWTEXT(“.”,BarIndex,high[1]+0.5*rge,serif,bold,1) coloured(250,250,250,255) //(H1/H4 = +7) (1 min = -1)
    //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)

    #248138

    Ici vous avez :

    1 user thanked author for this post.
    #248159

    merci Ivan

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