SanketDube
Pine Script Rookie
Pine Script Rookie
Posts: 2
Joined: December 28th, 2022
Contact: TradingView Profile

Number after indicator label

https://imgur.com/a/DDMz91D

As shown in above image I am unable to see numbers after the label. Is there a setting to change this?

purplemint22
Pine Script Rookie
Pine Script Rookie
Posts: 17
Joined: October 14th, 2022

Re: Number after indicator label

It's a little hard to tell what you are trying to say from the image. The number will show when you hover over the indicator when the value is added to the plot() function. I can see that you have something plotted from the second image. Could it be that you added a display.none command when you plotted the value?

For example,

plot(a, "ATR", display = display.none)

If you set the display parameter to display.none, you won't see the value if you hover over the indicator even though the value has been plotted.

Return to “Pine Script Q&A”