TIGER couleur de bougie à modifier

Forums ProRealTime forum Français Support ProBuilder TIGER couleur de bougie à modifier

Viewing 6 posts - 1 through 6 (of 6 total)
  • #253312

    Voici mon indicateur phare , le TIGER. J’aimerai que la couleur de la bougie BUY se colorise en bleu et la bougie SELL en jaune. Merci Ivan par avance.

     

     

    //
    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,25) coloured(0,250,0,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,25) coloured(250,0,0,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,0,0) STYLE(dottedLINE),hh coloured(0,250,0) STYLE(LINE),ll coloured(250,0,0) STYLE(LINE)

    #253314

    Signal TIGER : BUY> plus haut de l abougi everte, ou SELL <  et inversement pour la rouge

     

    exemple sur le gold/es/nq

    #253317

    salut. Ici, utilisez simplement les instructions drawcandle(open,high,low,close)colored("jaune")

    1 user thanked author for this post.
    #253320

    Merci Ivan, voici les signaux en buystop et sellstop

    #253324

    J’aimerai automatiser avec un algo en m5. saurez tu le programmer? avec les 2 types des signaux: le Tiger et le James bond 007? avec Tp ouvert en fonction de l UT

    #253327

    en m2 voici le GOLD. toutes les bougies autres que vert/rouge buystop>plus haut et sellstop<plus bas.

    et pour les vert/rouge, sell < trait rouge et buy >trait vert.

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

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