forked from nique_372/AiDataTaskRuner
26 lines
1.3 KiB
MQL5
26 lines
1.3 KiB
MQL5
//+------------------------------------------------------------------+
| |||
//| Compile.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 <TSN\\ExtraCodes\\Func.mqh>
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| Script program start function |
| |||
//+------------------------------------------------------------------+
| |||
void OnStart()
| |||
{
| |||
//---
| |||
string out;
| |||
CompileFileWithLogFile("C:\\Users\\USER\\AppData\\Roaming\\MetaQuotes\\Terminal\\D0E8209F77C8CF37AD8BF550E51FF075\\MQL5\\Shared Projects\\AiDataTaskRuner\\AiDataTaskRunnerByLeo.mq5",
| |||
out, 100000, "avx2", true);
| |||
}
| |||
//+------------------------------------------------------------------+
|