Unidentified error
Posted: Wed Jul 12, 2023 8:39 pm
Dear masters, please tell me about my problem.
1. I wrote this code:
//@version=5
indicator("My Script", overlay=true)
int Max Alert = input.int(10, "Max Alert", minval=1, maxval=100, step=1)
var line[] arLine = array.new_line(0)
.............
.............
.............
if MaxAlert < array.size(arLine)
line.delete(arLine[0])
array.shift(arLine)
2. The compiler gives me the following error on the line "if MaxAlert < array.size(arLine)":
Syntax error at input 'line'
Please, I ask you to tell me what is my syntax error?
I am using Pine Script version 5.
1. I wrote this code:
//@version=5
indicator("My Script", overlay=true)
int Max Alert = input.int(10, "Max Alert", minval=1, maxval=100, step=1)
var line[] arLine = array.new_line(0)
.............
.............
.............
if MaxAlert < array.size(arLine)
line.delete(arLine[0])
array.shift(arLine)
2. The compiler gives me the following error on the line "if MaxAlert < array.size(arLine)":
Syntax error at input 'line'
Please, I ask you to tell me what is my syntax error?
I am using Pine Script version 5.