Inputs Get integer value //Simple one i_len=input.int(10,"i") //Using Min and max value and step i_len1 = input.int(300, "Position", minval=100, maxval=1000, step=1) //Using Options i_len2 = input.int(10, "Length 2", options=[5, 10, 21])