I'm trying to denote whether a inside bar is a bull bar or bear bar by having one as a filled candle bar and another as a hollow candle bar. Is this possible?
are you going to turn off candle fill in the settings / appearance?
it is possible to draw a candle with addchart(). if drawn on top of main candle, i think it will be the visible color....
here is an example
https://usethinkscript.com/threads/candle-fill-color.6691/#post-70687
you would check if an inside bar.
if true , then set 1 of the 4 variables (OHLC) to its intended variable , else double.nan
i think the grow color is what you want to change
def inside = ...... whatever your formula is ......
def o = if inside then open else double.nan;
def h = high...