scrrener à partir de cet indicateur TIGER

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

     

    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)

    NA-Journalier.png NA-Journalier.png
    #248138 quote
    Iván GonzálezIván González
    Moderator
    Legend

    Ici vous avez :

    if Close>max(high[1],high[2]) then
    D=Min(low,low[1])
    elsif close<Min(low[1],low[2]) then
    D=Max(high,high[1])
    else
    D=D[1]
    endif
    
    if (close crosses over D) then
    signalUp=1
    else
    signalUp=0
    endif
    if (close crosses under D) then
    signalDn=1
    else
    signalDn=0
    endif
    
    screener[signalUp or signalDn](SignalUp as "Long",signalDn as "Short")
    robertogozzi thanked this post
    #248159 quote
    geronimangeroniman
    Participant
    Average

    merci Ivan

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

scrrener à partir de cet indicateur TIGER


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
geroniman @geroniman Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by geronimangeroniman
1 year, 3 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 06/09/2025
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...