recurring error in the Editor

 
Good day. I'm programming in the Editor and it keeps giving me the same error, even though everything is fine = see printscreen here. What's wrong?
Files:
mt5.jpg  53 kb
 

without seeing the code, we can only make guesses. But my guess is that you have not closed the preprocessor #if.

And I doubt that you will get any more responses, except for these "we can not read your mind", "we can not see your screen", or my favorite "our crystal balls are cracked or broken".

 
@Michael Charles Schefe #: without seeing the code, we can only make guesses. But my guess is that you have not closed the preprocessor #if.

And I doubt that you will get any more responses, except for these "we can not read your mind", "we can not see your screen", or my favorite "our crystal balls are cracked or broken".

There is no #if preprocessor instruction. That is why the answer by @Soewono Effendi was "no #if". There is a #ifdef however.

Documentation on MQL5: Language Basics / Preprocessor / Conditional Compilation (#ifdef, #ifndef, #else, #endif)
Documentation on MQL5: Language Basics / Preprocessor / Conditional Compilation (#ifdef, #ifndef, #else, #endif)
  • www.mql5.com
The preprocessor directives are used by the compiler to preprocess the source code before compiling it. The directive always begins with # ...