Drawing Lines with Pine Script: A Comprehensive Guide
Pine Script, a powerful programming language used in TradingView, allows users to create custom indicators and strategies by drawing lines directly on charts. The line.new()
function is a key tool for this purpose, enabling users to visualize trends, support levels, and resistance levels dynamically. In this article, we’ll explore how to use Pine Script to draw lines effectively, enhancing your trading analysis and strategy development.

Understanding the line.new()
Function​
The line.new()
function is used to create new line objects on a TradingView chart. It requires several parameters to define the line’s characteristics:
- x1 and x2: These represent the starting and ending points of the line, which can be based on the bar index or UNIX time, depending on the
xloc
parameter. - y1 and y2: These denote the price values at the starting and ending points of the line.
- xloc: This determines whether
x1
andx2
are bar indices (xloc.bar_index
) or UNIX times (xloc.bar_time
). - extend: Controls how the line extends beyond the defined points. Options include
extend.none
,extend.right
,extend.left
, andextend.both
. - color: Specifies the line color.
- style: Defines the line style, such as solid, dotted, dashed, or arrow styles.
- width: Sets the line width in pixels.

Creating Custom Line Indicators Without Coding Knowledge​
Don't worry if you can't code - there are now easy-to-use tools (Pineify) that help you create custom chart lines for trading. While Pine Script traditionally needs coding knowledge to set up lines with different styles and rules, new visual tools make this much simpler.

These visual tools let you draw all kinds of lines on your charts by clicking and selecting options - no coding required. You can create trend lines, support and resistance levels, moving averages, Bollinger Bands, and other custom lines through a simple menu system. Just choose the type of line you want, set up your preferences using simple options, and specify when you want the lines to appear on your charts.
Website: Pineify
Click here to view all the features of Pineify.