TIGER couleur de bougie à modifier
Forums › ProRealTime forum Français › Support ProBuilder › TIGER couleur de bougie à modifier
- This topic has 5 replies, 2 voices, and was last updated 1 hour ago by
geroniman.
-
-
11/05/2025 at 9:27 AM #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 = 0rge = 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
endifreturn 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)
11/05/2025 at 9:34 AM #25331411/05/2025 at 9:55 AM #253317salut. Ici, utilisez simplement les instructions drawcandle(open,high,low,close)colored("jaune")
12345678910111213141516171819202122232425262728293031323334353637383940//defparam calculateonlastbars = 5000if Close>( max(max(high,high[1]),max(high[1],high[1]) ))[1] thenD=Min(Min(low,low[1]),Min(low[1],low[1]))elsif close<(Min(Min(low,low[1]),Min(low[1],low[1])))[1] thenD=Max(Max(high,high[1]),Max(high[1],high[1]))elseD=D[1]endif//plot1 = 0//plot2 = 0rge = 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=highdrawcandle(open,high,low,close)coloured("blue")//else//plot1 = 0endifif (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)drawcandle(open,high,low,close)coloured("yellow")//(H1/H4 = +7) (1 min //= -12//plot2=-1//else//plot2=0levelUP=high[0]ll=lowr=0g=255b=255endifreturn 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)1 user thanked author for this post.
11/05/2025 at 11:49 AM #25332011/05/2025 at 11:51 AM #25332411/05/2025 at 11:56 AM #253327 -
AuthorPosts
Find exclusive trading pro-tools on 