Errors declaring multi dimensional array

 

Hi I'm getting the following errors when declaring a multi dimensional array, And I don't now why, Just started coding with MQL5



Thank you

 
  1. Please don't post image of code. When you post code please use the CODE button (Alt-S)! (For large amounts of code, attach it.) Please edit your post.
              General rules and best pratices of the Forum. - General - MQL5 programming forum
              Messages Editor

  2. You wrote
    #define Size 1000;
    double array[size];
    Which doesn't compile
    #define Size 1000;
    double array[1000;
    ];

Reason: