Lipi Reference Lipi

Types

int

A whole number. One of the five data types the grammar names directly. Written as a bare number: `14`. It has no fields.

Example


          indicator("Int Keyword Example", overlay=true)
// Declare an integer variable for moving average length
int maLength = 20
// Calculate the Simple Moving Average (SMA) using the integer variable
smaValue = talib.sma(close, maLength)
// Plot the moving average
plot(smaValue, title="20-period SMA", color=color.blue, linewidth=2)