HI ! Do you have this indicator without the color on the candle ?Thank you in advance
The easiest way to prevent this indicator from painting the candles would be to take out the AssignPriceColor statement.
In this case, it would be deleting this code from the bottom of the script:
Ruby:
# Candle Colors
AssignPriceColor(if Pos_State then Color.GREEN
else if Neg_State then Color.RED
else Color.YELLOW);
If you want to preserve the option of painting the candles, you can replace the above code with:
Ruby:
# Candle Colors
input PaintCandles = no ;
AssignPriceColor(if !PaintCandles then color.current else
if Pos_State then Color.GREEN
else if Neg_State then Color.RED
else Color.YELLOW);