55 líneas
1,8 KiB
MQL4
55 líneas
1,8 KiB
MQL4
//+------------------------------------------------------------------+
|
|
//| Base.mqh |
|
|
//| Copyright 2025, Niquel Mendoza. |
|
|
//| https://www.mql5.com/es/users/nique_372 |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2025, Niquel Mendoza."
|
|
#property link "https://www.mql5.com/es/users/nique_372"
|
|
#property strict
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#define TOTAL_FVG_TEST 7
|
|
|
|
//--- Indices
|
|
#define BENH_IDX_CODE1 0
|
|
#define BENH_IDX_CODE2 1
|
|
#define BENH_IDX_CODE3 2
|
|
#define BENH_IDX_LIB 3
|
|
#define BENH_IDX_CODE4 4
|
|
#define BENH_IDX_CODE5 5
|
|
#define BENH_IDX_CODE6 6
|
|
|
|
//--- Archivos
|
|
const string g_benchk_filenames[TOTAL_FVG_TEST]
|
|
{
|
|
"ICTLibraryEasy\\Code1.txt",
|
|
"ICTLibraryEasy\\Code2.txt",
|
|
"ICTLibraryEasy\\Code3.txt",
|
|
"ICTLibraryEasy\\Lib.txt",
|
|
"ICTLibraryEasy\\Code4.txt",
|
|
"ICTLibraryEasy\\Code5.txt",
|
|
"ICTLibraryEasy\\Code6.txt"
|
|
};
|
|
//--- Names
|
|
const string g_benchk_names[TOTAL_FVG_TEST]
|
|
{
|
|
"rpanchyk",
|
|
"Hieu Hoang",
|
|
"R. Kumar Nait",
|
|
"ICTLibLeo",
|
|
"C. Sonet 4.5",
|
|
"Chat Gpt",
|
|
"C. Opus 4.5"
|
|
};
|
|
|
|
//--- Easy
|
|
#define FILE_CODE1 g_benchk_filenames[BENH_IDX_CODE1]
|
|
#define FILE_CODE2 g_benchk_filenames[BENH_IDX_CODE2]
|
|
#define FILE_CODE3 g_benchk_filenames[BENH_IDX_CODE3]
|
|
#define FILE_CODE4 g_benchk_filenames[BENH_IDX_CODE4]
|
|
#define FILE_CODE5 g_benchk_filenames[BENH_IDX_CODE5]
|
|
#define FILE_CODE6 g_benchk_filenames[BENH_IDX_CODE6]
|
|
#define FILE_LIB g_benchk_filenames[BENH_IDX_LIB]
|
|
//+------------------------------------------------------------------+
|