I use this indicator a lot and would love the ability to change the candle colors. can anyone add that ability from the settings page? Thanks!
Not sure that you will find a setting that you like.
Gradient coloring is not like setting a simple red and green.
This line of code is what determines the colors. You can attempt to change the integers to modify your color.
def colSent = if IsNaN(sentiment) then 0 else
if sentiment <= 0 then 0 else if sentiment >= 100 then 255 else sentiment * 2.55;