1
0
Ответвление 0
ответвлён от paulosalestd/MQL5Book
MQL5Book/Scripts/p4/GlobalsFlush.mq5

16 строки
804 Б
MQL5
Исходный Постоянная ссылка Обычный вид История

2025-05-30 16:09:41 +02:00
//+------------------------------------------------------------------+
//| GlobalsFlush.mq5 |
//| Copyright 2021, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
// enforce writing global variables to disk if they are not yet
// saved in their current state
GlobalVariablesFlush();
}
//+------------------------------------------------------------------+