file , function and line block indicate
file = the source code file name
function = the function or method you are in
line = line number in the source code file
Also observe it shows the call stack i.e. OnTick > calls the SELL_STOP function, this can be many levels deep depending on how many functions are called
file = the source code file name
function = the function or method you are in
line = line number in the source code file
Also observe it shows the call stack i.e. OnTick > calls the SELL_STOP function, this can be many levels deep depending on how many functions are called
thanks . What does the 1/2 behind the variable names mean ?
It means that the number is a floating point number (double/float) and not a whole number (int, long, etc.).
Also read the following ... Code debugging - Developing programs - MetaEditor Help
And remember, that the F1 key brings up the help documentation.
- www.metatrader5.com
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hey guys
I am debugging my MQL5 source code . What does the file , function and line block indicate ?