//+------------------------------------------------------------------+ //| 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() { //--- CRecolect::Save(InpFileNameOut, InpFileInCommon); } //+------------------------------------------------------------------+