MQLArticles/Utils/EnumsStr/Generate/Run.mq5

31 lines
1.4 KiB
MQL5
Raw Permalink Normal View History

2026-06-28 13:19:00 -05:00
//+------------------------------------------------------------------+
//| Run.mq5 |
//| Copyright 2026, Niquel Mendoza. |
//| https://www.mql5.com/ |
//+------------------------------------------------------------------+
#property copyright "Copyright 2026, Niquel Mendoza."
#property link "https://www.mql5.com/"
#property version "1.00"
#property strict
#property script_show_inputs
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#include "Def.mqh"
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
input string InpFileNameOut = "MQLArticles\\enum.txt";
input bool InpFileInCommon = true;
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
2026-06-28 16:15:24 -05:00
CRecolect::Save(InpFileNameOut, InpFileInCommon);
2026-06-28 13:19:00 -05:00
}
//+------------------------------------------------------------------+