2026-06-28 17:05:25 -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
|
|
|
|
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| |
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
#include "def.mqh"
|
|
|
|
|
|
2026-06-28 17:06:49 -05:00
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| |
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
input string InpFileName = "SimPHash\\enums.txt";
|
|
|
|
|
input bool InpCommonFlag = true;
|
|
|
|
|
|
2026-06-28 17:05:25 -05:00
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| Script program start function |
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
void OnStart()
|
|
|
|
|
{
|
|
|
|
|
//---
|
2026-06-28 17:06:49 -05:00
|
|
|
CRecolect::Save(InpFileName, InpCommonFlag);
|
2026-06-28 17:05:25 -05:00
|
|
|
}
|
|
|
|
|
//+------------------------------------------------------------------+
|