Page 1 of 1

Unidentified error

Posted: Wed Jul 12, 2023 8:39 pm
by Gr0l
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.

Re: Unidentified error

Posted: Mon Aug 07, 2023 1:29 pm
by Gr0l
The issue is resolved. It is necessary to set the correct number of spaces before the operators.