LLmAgentsBasicTools/Src/EnumReg/run/Run.mq5
2026-07-13 15:02:42 -05:00

30 lines
1.4 KiB
MQL5

//+------------------------------------------------------------------+
//| 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
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#include "def.mqh"
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
input string InpFileName = "LLmAgentsBTools\\enums.txt";
input bool InpCommonFolder = true;
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
CRecolect::Save(InpFileName, InpCommonFolder);
}
//+------------------------------------------------------------------+