forked from airat77786/MQL5Book
25 lines
896 B
MQL5
25 lines
896 B
MQL5
//+------------------------------------------------------------------+
| |||
//| EnvClose.mq5 |
| |||
//| Copyright 2021, MetaQuotes Ltd. |
| |||
//| https://www.mql5.com |
| |||
//+------------------------------------------------------------------+
| |||
#property script_show_inputs
| |||
| |||
input int ReturnCode = 0;
| |||
input bool CloseTerminalNow = false;
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| Script program start function |
| |||
//+------------------------------------------------------------------+
| |||
void OnStart()
| |||
{
| |||
if(CloseTerminalNow)
| |||
{
| |||
TerminalClose(ReturnCode);
| |||
}
| |||
else
| |||
{
| |||
SetReturnError(ReturnCode);
| |||
}
| |||
}
| |||
//+------------------------------------------------------------------+
|