Integer Input
FXC911 – Forex & Crypto News & Insights
Goals
This Pine Script code creates a simple indicator with an integer input field. The user can enter a value between 1 and 10 (inclusive), with a default value of 1 and an increment step of 1. The entered value is then plotted as a horizontal line on the chart.
Pine Script Code
//@version=5
indicator("Integer Input")
value = input.int(title = "Enter Value", defval = 1, maxval = 10, minval =1, step =1)
plot(value)
Code Output

Explanation
//@version=5
This specifies that the script is written in Pine Script version 5.
indicator("Integer Input")
This defines an indicator named "Integer Input".
value = input.int(title = "Enter Value", defval = 1, maxval = 10, minval = 1, step = 1)
value = input.int(...)
: This creates an integer input field for the user.title = "Enter Value"
: The title of the input field is "Enter Value".defval = 1
: The default value of the input field is 1.maxval = 10
: The maximum value the user can input is 10.minval = 1
: The minimum value the user can input is 1.step = 1
: The increment step for the input value is 1.
plot(value)
This plots the value entered by the user on the chart.
Keywords
pine script
, trading view
, script editor
, indicators
, strategies
, backtesting
, alerts
, custom scripts
, stock analysis
, charting tools
, technical analysis
, built-in functions
, pine script syntax
, trading bots
, automated trading
, scripting language
, market data
, trading signals
, financial markets
, programming trading strategies
Visit me on:
🚀 Finance & Trading Insights: fxc911.ir
🐦 Twitter: x.com/fxc911_official/
Last updated