How do I change the color of the text inside a label shape? I dont want to change the color of the label so that it maintains a contrast.
plotshape(Trend == 1 and Trend[1] == -1 ? Trend : na, color=lime, style=shape.labelup, text='BUY') plotshape(Trend == -1 and Trend[1] == 1 ? Trend : na, color=red, style=shape.labeldown, text='SELL')