Getting EA's version number

 

I'm trying to retrieve the version number i.e.

#property version   "1.00"

I had a look at MQLInfoString etc. but couldn't find anything to retrieve that string... does anybody have any pointers about doing this?

Many thanks in advance!

 
toast:

I'm trying to retrieve the version number i.e.

I had a look at MQLInfoString etc. but couldn't find anything to retrieve that string... does anybody have any pointers about doing this?

Many thanks in advance!

Not possible. Use something like :

#define VERSION "1.00"
#property version VERSION
 
Many thanks for the quick workaround!
Reason: