rebParticipant
Master
Hello
I’d like to insert to an indicator a code with “DRAWCANDLE” between Bollsup and+ infinite :
something like
DRAWCANDLE(infinite, bollsup, infinite, bollsup)coloured(R,G,B,x)
What is the instruction for +/- infinite ?
Thanks by advance
Reb
JSParticipant
Senior
Hi,
As far as I know, there is no keyword for “infinite” in PRT…
JSParticipant
Senior
I don’t know exactly what the intention is, but in combination with ‘DRAWCANDLE’ it won’t work… (unreadable output).
Is it only for graphical purposes?
rebParticipant
Master
thks for your help.
I tried to add a colour above the upper boll, but I will find another solution
JSParticipant
Senior
If you only want to have a color above the bollinger band, you can use: “ColorBetween”…
x=BollingerUp[20](close)
y=100000 //big number
ColorBetween(x,y,240,230,140,50)
Return x