1

is anyone else finding problems with their input.int(... , options=[1,2,3,4,5]) not displaying any data within the drop down list? You can still drop the menu down and select an "option", it all works fine, except there is no visible text/data contained within the drop down menu options?

It worked fine yesterday and I haven't updated the code since then. Also, I tried creating a new little indicator script just containing the following code, got the same problem, no data within the drop down menu!?

//@version=5
indicator("My script")
plot(close)

test = input.int(defval=5, title="Test DD", options=[1,2,3,4,5])

I've tried a different Tradingview account and a different browser, no luck. Please help! Thanks

No Data within Drop Down

2 Answers2

1

Your script works perfectly on my tradingview,
I think it is more a problem linked to your browser, try to clean your browser and restart it.

enter image description here

G.Lebret
  • 2,826
  • 2
  • 16
  • 27
  • Thanks for your reply - I've tried with Firefox, Chrome and Edge and am getting the same issue! I've been investigating and am not the only one reporting this problem at the moment. It's happening with certain scripts (but not all) when using input.int or input.float with the options=[] parameter. – theCrypster Dec 21 '22 at 11:42
1

Support team says that this is a recent bug. The fix is in progress.

beeholder
  • 1,444
  • 1
  • 3
  • 6
  • Thanks - I raised a ticket with them yesterday, I've had confirmation that they've passed the issue onto the relevant team; awaiting further updates. – theCrypster Dec 21 '22 at 11:44