Error "Array out of range in "
-
Friends I am getting the error "array out of range in".
When this error occurs it removes the EA from the screen.
Would anyone know how to tell me how to fix it?
Follow the screen print.
-
@ontrade you are asking an array element that isnt there.
For example, an array of size 3 can have these elements:
array[0] = 123
array[1] = 347
array[2] = 321If you try to get array[3], the EA gives error because array[3] doesnt exist - the array is out of range.