2026-08-28 08:28:39 -05:00
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| UtilHeader.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
|
2026-08-28 08:36:08 -05:00
|
|
|
#property script_show_inputs
|
2026-08-28 08:28:39 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| |
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
#include "Def.mqh"
|
|
|
|
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| |
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
input string InpLibName = "JsonParserByLeo";
|
|
|
|
|
input bool InpFinish = true;
|
|
|
|
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| Script program start function |
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
void OnStart()
|
|
|
|
|
{
|
|
|
|
|
//---
|
|
|
|
|
if(InpFinish)
|
|
|
|
|
PrintFormat("[MultiBen& - %%[%s]", InpLibName);
|
|
|
|
|
else
|
2026-08-28 08:36:08 -05:00
|
|
|
Print("[MultiBen& - $[parse", "|", JSONBENCH_TAGDATASET_PARSE, "|", InpLibName, "|", JSONBENCH_TOTAL_ITER_PARSE,"]");
|
2026-08-28 08:28:39 -05:00
|
|
|
}
|
|
|
|
|
//+------------------------------------------------------------------+
|