I want to show the options as string as in photo1 photo1
I want it to be "very sensitive" "sensitive" and "normal" in the options. For example, if you choose very sensitive, the length should be 20.0. When choosing normal, the length should be 53.0. How do I do this?
I have no idea about PineScript. I wrote something to explain what I want to do
length = input(title="Settings",options=["VerySensitve", "Sensitive","Normal"])
if (length == "VerySensitive")
length = 20.0
else if (length == "Sensitive")
length = 33.0
else if (length == "Normal")
length = 53.0