problem compiling

 
extern bool 1_cloud = true;
extern bool 2_cloud = true;
extern bool 3_cloud = true;
extern bool 4_cloud = true;
extern bool 5_cloud = true;



NAME EXPECTED

 

need more code.

check the line number in the error.

 
Filip Sukharev:
extern bool 1_cloud = true;
extern bool 2_cloud = true;
extern bool 3_cloud = true;
extern bool 4_cloud = true;
extern bool 5_cloud = true;



NAME EXPECTED


Especially note this part: The first character can not be a digit.

Documentation on MQL5: Language Basics / Syntax / Identifiers
Documentation on MQL5: Language Basics / Syntax / Identifiers
  • www.mql5.com
Characters allowed to be written in an identifier: figures 0-9, the Latin uppercase and lowercase letters a-z and A-Z, recognized as different characters, the underscore character (_).The first character can not be a digit.
Reason: