- GetLastError
- IsStopped
- UninitializeReason
- TerminalInfoInteger
- TerminalInfoDouble
- TerminalInfoString
- MQLInfoInteger
- MQLInfoString
- Symbol
- Period
- Digits
- Point
GetLastError
Returns the contents of the system variable _LastError.
int GetLastError(); |
Return Value
Returns the value of the last error that occurred during the execution of an mql5 program.
Note
After the function call, the contents of _LastError are not reset. To reset this variable, you need to call ResetLastError().
Example:
//+------------------------------------------------------------------+
|
See also