Strage error

 

Strange code on MQL build 314

This is the code

//+------------------------------------------------------------------+
//|                                                            a.mqh |
//|                        Copyright 2010, MetaQuotes Software Corp. |
//|                                              http://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2010, MetaQuotes Software Corp."
#property link      "http://www.mql5.com"

and the error is:

'http://www.mql5.com' - unexpected end of program    a.mqh    7    21

I create a mqh file, nothing more.

Automated Trading and Strategy Testing
  • www.mql5.com
MQL5: language of trade strategies built-in the MetaTrader 5 Trading Platform, allows writing your own trading robots, technical indicators, scripts and libraries of functions
 
dudufx:

Strange code on MQL build 314

This is the code

and the error is:

'http://www.mql5.com' - unexpected end of program    a.mqh    7    21

I create a mqh file, nothing more.

Your project is empty. Most likely it has no content.

It should be added to the module of the project content (functions or classes).

After you have added the contents of the compiler will cease to issue this message. You can use this file for your work (if no other errors).

 
Interesting:
Your project is empty. Most likely it has no content.

It should be added to the module of the project content (functions or classes).

After you have added the contents of the compiler will cease to issue this message. You can use this file for your work (if no other errors).

Thx.