I have the following code in pine which looks like this:
strategy("My script", overlay = true)
input high = close;
input low = close;
input period = 20;
input standardDeviation = 2;
This is producing the following error:
Error at 15:19 no viable alternative at character ';'
Could you please advise how to resolve this error?