From 2c4709a6ab969be10f3285a6354c06cc13455e75 Mon Sep 17 00:00:00 2001 From: Hiroaki86 Date: Sun, 14 Jun 2026 22:16:37 +0900 Subject: [PATCH] Refactor MQL5 EA logic and sync documentation --- .../AccountInfoSample.6f166a75.auto.mqh | 7 + .../ArrayDoubleSample.19fa7ef3.auto.mqh | 7 + .../BitonicSort.3910007f.auto.mqh | 15 + .../BitonicSort.9ca2f411.auto.mqh | 15 + .../CanvasSample.84ff22bb.auto.mqh | 9 + .../Comment_Test.b3a29339.auto.mqh | 15 + .../Debug_Entry_Panel.179d8076.auto.mqh | 27 + .mql-auto-forwards/FFT.161e9462.auto.mqh | 19 + .mql-auto-forwards/FFT.2b43903c.auto.mqh | 19 + .mql-auto-forwards/HIT-EA.0d006635.auto.mqh | 45 + .../HIT-EA_refactor.9e7cffce.auto.mqh | 95 + .../HIT-EA_refactor_ver2.4914830b.auto.mqh | 129 + .../HIT-EA_refactor_ver3.9d52c52b.auto.mqh | 141 + ...EA_refactor_ver3_restore.9e59dbee.auto.mqh | 145 + .../HIT-EA_refactor_ver4.ca569fc9.auto.mqh | 141 + .../HIT-EA_refactor_ver5.2b1e831b.auto.mqh | 17 + .../HIT-EA_refactor_ver6.0606879f.auto.mqh | 35 + .../HIT-EA_refactor_ver6.a28fb657.auto.mqh | 35 + .../HistogramChartSample.91c16b25.auto.mqh | 7 + .../LineChartSample.59d6116a.auto.mqh | 7 + .../MatrixMult.2e7990e3.auto.mqh | 11 + .../MatrixMult.8863193a.auto.mqh | 11 + .../ObjChartSample.341e64fa.auto.mqh | 7 + .../OrderInfoSample.c003532a.auto.mqh | 7 + .../PieChartSample.354d95dc.auto.mqh | 9 + .../PositionInfoSample.73cba22b.auto.mqh | 7 + .../Remnant 3D.bb733e31.auto.mqh | 7 + .../SLTP_Panel.44ea2bbd.auto.mqh | 75 + ...original_20260503_153540.fc92d045.auto.mqh | 139 + ...original_20260503_171108.6d58833b.auto.mqh | 139 + .mql-auto-forwards/Seascape.2803837b.auto.mqh | 13 + .../SphereSample.5acb5dc3.auto.mqh | 11 + .../SuperTrend_Custom.913f84d0.auto.mqh | 7 + ...erTrend_CustomWithOffset.0091820d.auto.mqh | 9 + ...perTrend_Custom_20251203.a2fa19f2.auto.mqh | 7 + .../SymbolInfoSample.b7ae9723.auto.mqh | 7 + .../TestArrayList.76e6c7c5.auto.mqh | 65 + .../TestClasses.7e6865b2.auto.mqh | 9 + .../TestFuzzy.5fe06143.auto.mqh | 47 + .../TestHashMap.be102765.auto.mqh | 17 + .../TestHashSet.93ceb4a9.auto.mqh | 15 + .../TestInterfaces.1f0599a0.auto.mqh | 7 + .../TestLinkedList.f0eafcb0.auto.mqh | 49 + .../TestQueue.9fbbf7ab.auto.mqh | 25 + .../TestRedBlackTree.285a3d31.auto.mqh | 31 + .../TestSortedMap.f0cde49c.auto.mqh | 17 + .../TestSortedSet.667f905f.auto.mqh | 15 + .../TestStack.5271212b.auto.mqh | 25 + .mql-auto-forwards/TestStat.c52e7569.auto.mqh | 57 + .../TestStatBenchmark.a4ce858f.auto.mqh | 55 + .../TestStatPrecision.bfb129a2.auto.mqh | 11 + .../TradingPanel.c4d984b7.auto.mqh | 13 + .../TradingPanel.f6a6a516.auto.mqh | 13 + .mql-auto-forwards/Wavelet.fe5807cd.auto.mqh | 15 + .mql-auto-forwards/Wavelet.ffd23185.auto.mqh | 15 + .mql-auto-forwards/eATR.66c47364.auto.mqh | 7 + .../eSuperTrend.c83c4339.auto.mqh | 7 + .../eSuperTrendWithOffset.1fa3998c.auto.mqh | 9 + .../eSuperTrendWithOffset2.ccd19995.auto.mqh | 9 + .vscode/settings.json | 20 + compile_commands.json | 6880 +++++++++-------- 61 files changed, 5508 insertions(+), 3321 deletions(-) create mode 100644 .mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh create mode 100644 .mql-auto-forwards/ArrayDoubleSample.19fa7ef3.auto.mqh create mode 100644 .mql-auto-forwards/BitonicSort.3910007f.auto.mqh create mode 100644 .mql-auto-forwards/BitonicSort.9ca2f411.auto.mqh create mode 100644 .mql-auto-forwards/CanvasSample.84ff22bb.auto.mqh create mode 100644 .mql-auto-forwards/Comment_Test.b3a29339.auto.mqh create mode 100644 .mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh create mode 100644 .mql-auto-forwards/FFT.161e9462.auto.mqh create mode 100644 .mql-auto-forwards/FFT.2b43903c.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA.0d006635.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor.9e7cffce.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver2.4914830b.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver3.9d52c52b.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver3_restore.9e59dbee.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver4.ca569fc9.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver5.2b1e831b.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver6.0606879f.auto.mqh create mode 100644 .mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh create mode 100644 .mql-auto-forwards/HistogramChartSample.91c16b25.auto.mqh create mode 100644 .mql-auto-forwards/LineChartSample.59d6116a.auto.mqh create mode 100644 .mql-auto-forwards/MatrixMult.2e7990e3.auto.mqh create mode 100644 .mql-auto-forwards/MatrixMult.8863193a.auto.mqh create mode 100644 .mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh create mode 100644 .mql-auto-forwards/OrderInfoSample.c003532a.auto.mqh create mode 100644 .mql-auto-forwards/PieChartSample.354d95dc.auto.mqh create mode 100644 .mql-auto-forwards/PositionInfoSample.73cba22b.auto.mqh create mode 100644 .mql-auto-forwards/Remnant 3D.bb733e31.auto.mqh create mode 100644 .mql-auto-forwards/SLTP_Panel.44ea2bbd.auto.mqh create mode 100644 .mql-auto-forwards/SLTP_Panel_original_20260503_153540.fc92d045.auto.mqh create mode 100644 .mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh create mode 100644 .mql-auto-forwards/Seascape.2803837b.auto.mqh create mode 100644 .mql-auto-forwards/SphereSample.5acb5dc3.auto.mqh create mode 100644 .mql-auto-forwards/SuperTrend_Custom.913f84d0.auto.mqh create mode 100644 .mql-auto-forwards/SuperTrend_CustomWithOffset.0091820d.auto.mqh create mode 100644 .mql-auto-forwards/SuperTrend_Custom_20251203.a2fa19f2.auto.mqh create mode 100644 .mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh create mode 100644 .mql-auto-forwards/TestArrayList.76e6c7c5.auto.mqh create mode 100644 .mql-auto-forwards/TestClasses.7e6865b2.auto.mqh create mode 100644 .mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh create mode 100644 .mql-auto-forwards/TestHashMap.be102765.auto.mqh create mode 100644 .mql-auto-forwards/TestHashSet.93ceb4a9.auto.mqh create mode 100644 .mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh create mode 100644 .mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh create mode 100644 .mql-auto-forwards/TestQueue.9fbbf7ab.auto.mqh create mode 100644 .mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh create mode 100644 .mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh create mode 100644 .mql-auto-forwards/TestSortedSet.667f905f.auto.mqh create mode 100644 .mql-auto-forwards/TestStack.5271212b.auto.mqh create mode 100644 .mql-auto-forwards/TestStat.c52e7569.auto.mqh create mode 100644 .mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh create mode 100644 .mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh create mode 100644 .mql-auto-forwards/TradingPanel.c4d984b7.auto.mqh create mode 100644 .mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh create mode 100644 .mql-auto-forwards/Wavelet.fe5807cd.auto.mqh create mode 100644 .mql-auto-forwards/Wavelet.ffd23185.auto.mqh create mode 100644 .mql-auto-forwards/eATR.66c47364.auto.mqh create mode 100644 .mql-auto-forwards/eSuperTrend.c83c4339.auto.mqh create mode 100644 .mql-auto-forwards/eSuperTrendWithOffset.1fa3998c.auto.mqh create mode 100644 .mql-auto-forwards/eSuperTrendWithOffset2.ccd19995.auto.mqh diff --git a/.mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh b/.mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh new file mode 100644 index 0000000..2192aa4 --- /dev/null +++ b/.mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_6F166A751A950DA3 +#define MQL_AUTO_FORWARDS_INCLUDED_6F166A751A950DA3 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/ArrayDoubleSample.19fa7ef3.auto.mqh b/.mql-auto-forwards/ArrayDoubleSample.19fa7ef3.auto.mqh new file mode 100644 index 0000000..6a4d609 --- /dev/null +++ b/.mql-auto-forwards/ArrayDoubleSample.19fa7ef3.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_19FA7EF3A5C17005 +#define MQL_AUTO_FORWARDS_INCLUDED_19FA7EF3A5C17005 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ArrayDouble/ArrayDoubleSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/BitonicSort.3910007f.auto.mqh b/.mql-auto-forwards/BitonicSort.3910007f.auto.mqh new file mode 100644 index 0000000..b9e1d34 --- /dev/null +++ b/.mql-auto-forwards/BitonicSort.3910007f.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_3910007FE5A4066C +#define MQL_AUTO_FORWARDS_INCLUDED_3910007FE5A4066C +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/BitonicSort.mq5 + +#line 24 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/BitonicSort.mq5" +resource as string cl_program void QuickSortAscending(float &array[], int first, int last); +#line 72 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/BitonicSort.mq5" +bool QuickSort_CPU(float &data_array[], ulong &time_cpu); +#line 88 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/BitonicSort.mq5" +bool BitonicSort_GPU(COpenCL &OpenCL, float &data_array[], ulong &time_gpu); +#line 149 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/BitonicSort.mq5" +bool PrepareDataArray(long global_memory_size, float &data[], int &data_count); + +#endif diff --git a/.mql-auto-forwards/BitonicSort.9ca2f411.auto.mqh b/.mql-auto-forwards/BitonicSort.9ca2f411.auto.mqh new file mode 100644 index 0000000..4b16bd1 --- /dev/null +++ b/.mql-auto-forwards/BitonicSort.9ca2f411.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_9CA2F4117B4FA02E +#define MQL_AUTO_FORWARDS_INCLUDED_9CA2F4117B4FA02E +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5 + +#line 24 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" +resource as string cl_program void QuickSortAscending(double &array[], int first, int last); +#line 72 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" +bool QuickSort_CPU(double &data_array[], ulong &time_cpu); +#line 88 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" +bool BitonicSort_GPU(COpenCL &OpenCL, double &data_array[], ulong &time_gpu); +#line 155 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" +bool PrepareDataArray(long global_memory_size, double &data[], int &data_count); + +#endif diff --git a/.mql-auto-forwards/CanvasSample.84ff22bb.auto.mqh b/.mql-auto-forwards/CanvasSample.84ff22bb.auto.mqh new file mode 100644 index 0000000..46a10b2 --- /dev/null +++ b/.mql-auto-forwards/CanvasSample.84ff22bb.auto.mqh @@ -0,0 +1,9 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_84FF22BB352A811E +#define MQL_AUTO_FORWARDS_INCLUDED_84FF22BB352A811E +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/CanvasSample.mq5 + +#line 207 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/CanvasSample.mq5" +uint RandomRGB(void); + +#endif diff --git a/.mql-auto-forwards/Comment_Test.b3a29339.auto.mqh b/.mql-auto-forwards/Comment_Test.b3a29339.auto.mqh new file mode 100644 index 0000000..bb2c7d7 --- /dev/null +++ b/.mql-auto-forwards/Comment_Test.b3a29339.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_B3A29339D5503F77 +#define MQL_AUTO_FORWARDS_INCLUDED_B3A29339D5503F77 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Comment_Test.mq5 + +#line 24 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Comment_Test.mq5" +define PANEL_BODY bool EnsureRectLabel(const string name); +#line 29 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Comment_Test.mq5" +bool EnsureLabel(const string name); +#line 35 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Comment_Test.mq5" +void CreateInfoPanel(); +#line 92 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Comment_Test.mq5" +void SetPanelText(const string title, const string body); + +#endif diff --git a/.mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh b/.mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh new file mode 100644 index 0000000..820130e --- /dev/null +++ b/.mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh @@ -0,0 +1,27 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_179D8076AE6D13CF +#define MQL_AUTO_FORWARDS_INCLUDED_179D8076AE6D13CF +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5 + +#line 1349 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +int OnInitEvent(); +#line 1375 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void OnDeinitEvent(const int reason); +#line 1391 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +define MASK_RIGHT_MIDDLE 16 void CommonChartEvent(const int id, const long &lparam, const double &dparam, const string &sparam); +#line 1506 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void CreatePendingSetLine(color clr, double line_price); +#line 1521 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void MovePendingSetLine(double line_price); +#line 1530 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void DeletePendingSetLine(); +#line 1539 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void RecalculateValues(int position, double price_ref); +#line 1598 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +bool CheckLots(); +#line 1616 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void OpenBuyPendingOrder(double order_price); +#line 1654 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" +void OpenSellPendingOrder(double order_price); + +#endif diff --git a/.mql-auto-forwards/FFT.161e9462.auto.mqh b/.mql-auto-forwards/FFT.161e9462.auto.mqh new file mode 100644 index 0000000..5efccdf --- /dev/null +++ b/.mql-auto-forwards/FFT.161e9462.auto.mqh @@ -0,0 +1,19 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_161E94623585B981 +#define MQL_AUTO_FORWARDS_INCLUDED_161E94623585B981 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5 + +#line 28 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5" +define FFT_DIRECTION 1 void fft(const int N, float &x_real[], float &x_imag[], float &X_real[], float &X_imag[]); +#line 40 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5" +void ifft(const int N, float &x_real[], float &x_imag[], float &X_real[], float &X_imag[]); +#line 62 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5" +void fft_rec(const int N, const int offset, const int delta, float &x_real[], float &x_imag[], float &X_real[], float &X_imag[], float &XX_real[], float &XX_imag[]); +#line 104 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5" +bool FFT_CPU(int direction, int power, float &data_real[], float &data_imag[], ulong &time_cpu); +#line 131 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5" +bool ExecutionWait(COpenCL& OpenCL, int kernel_index); +#line 155 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/FFT.mq5" +bool FFT_GPU(int direction, int power, float &data_real[], float &data_imag[], ulong &time_gpu); + +#endif diff --git a/.mql-auto-forwards/FFT.2b43903c.auto.mqh b/.mql-auto-forwards/FFT.2b43903c.auto.mqh new file mode 100644 index 0000000..30416db --- /dev/null +++ b/.mql-auto-forwards/FFT.2b43903c.auto.mqh @@ -0,0 +1,19 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_2B43903CEDDD8F57 +#define MQL_AUTO_FORWARDS_INCLUDED_2B43903CEDDD8F57 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5 + +#line 28 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" +define FFT_DIRECTION 1 void fft(const int N, double &x_real[], double &x_imag[], double &X_real[], double &X_imag[]); +#line 40 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" +void ifft(const int N, double &x_real[], double &x_imag[], double &X_real[], double &X_imag[]); +#line 62 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" +void fft_rec(const int N, const int offset, const int delta, double &x_real[], double &x_imag[], double &X_real[], double &X_imag[], double &XX_real[], double &XX_imag[]); +#line 104 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" +bool FFT_CPU(int direction, int power, double &data_real[], double &data_imag[], ulong &time_cpu); +#line 131 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" +bool ExecutionWait(COpenCL& OpenCL, int kernel_index); +#line 155 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" +bool FFT_GPU(int direction, int power, double &data_real[], double &data_imag[], ulong &time_gpu); + +#endif diff --git a/.mql-auto-forwards/HIT-EA.0d006635.auto.mqh b/.mql-auto-forwards/HIT-EA.0d006635.auto.mqh new file mode 100644 index 0000000..cf4f11f --- /dev/null +++ b/.mql-auto-forwards/HIT-EA.0d006635.auto.mqh @@ -0,0 +1,45 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_0D006635EECD9565 +#define MQL_AUTO_FORWARDS_INCLUDED_0D006635EECD9565 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5 + +#line 390 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void CreateDoneFile(const string name); +#line 405 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void DeleteDoneFile(const string name); +#line 415 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool CheckDoneFile(const string name); +#line 423 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool GetLatestOHLC(datetime ×[], double &open_prices[], double &high_prices[], double &low_prices[], double &close_prices[], ENUM_TIMEFRAMES tf, int bars_count); +#line 469 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void RecordOHLC(const string filename, const datetime ×[], const double &open_prices[], const double &high_prices[], const double &low_prices[], const double &close_prices[]); +#line 517 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void ExecuteBatchTrend(); +#line 529 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void ExecuteBatchEntry(); +#line 542 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool RecordOHLCAndExecuteBatch_Trend(EAState &state); +#line 561 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool RecordOHLCAndExecuteBatch_Entry(EAState &state); +#line 581 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool GetTrendState(EAState &state); +#line 599 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void LoadTrendState(int &trend_state); +#line 621 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool GetTargetPrices(EAState &state); +#line 659 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +void LoadTargetPrices(double &target_prices[]); +#line 702 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool SendOrder(int orderType, double price, double tp, double sl); +#line 774 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 787 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +string RequestComment(int orderType); +#line 799 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool CancelExpiredOrders(); +#line 851 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +bool CloseExpiredPositions(); +#line 926 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" +int GetBarShiftByTime(datetime time, ENUM_TIMEFRAMES tf, int default_shift); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor.9e7cffce.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor.9e7cffce.auto.mqh new file mode 100644 index 0000000..30a297f --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor.9e7cffce.auto.mqh @@ -0,0 +1,95 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_9E7CFFCE7624C343 +#define MQL_AUTO_FORWARDS_INCLUDED_9E7CFFCE7624C343 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5 + +#line 168 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool GetTickContext(TickContext &ctx); +#line 192 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void ManageExpiredTrades(); +#line 211 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void ProcessTrendUpdate(EAState &state); +#line 238 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool IsTrendResultReady(); +#line 251 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void RefreshTrendState(EAState &state); +#line 266 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void ProcessEntryUpdate(EAState &state); +#line 297 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +string BuildStatusMessage(TickContext &ctx); +#line 333 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void UpdateStatusComment(TickContext &ctx); +#line 347 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool IsSpreadAllowed(TickContext &ctx); +#line 360 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool IsEntryResultReady(); +#line 373 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void RefreshTargetPrices(EAState &state); +#line 389 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void ProcessEntryDecisionIfNeeded(EAState &state, TickContext &ctx); +#line 413 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool ShouldRunEntryDecision(EAState &state); +#line 429 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool ValidateEntryPreconditions(EAState &state); +#line 472 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +int SendAllowedEntryOrders(EAState &state, TickContext &ctx); +#line 509 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool TrySendEntryOrder(const int orderType, EAState &state, TickContext &ctx); +#line 553 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +string EntryTypeName(const int orderType); +#line 580 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +double CurrentPriceForOrderType(const int orderType, TickContext &ctx); +#line 601 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool IsTargetPriceOrderConditionMatched(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 633 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void UpdateEntryRetryState(EAState &state, const int sent_success); +#line 662 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void CreateDoneFile(const string name); +#line 682 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void DeleteDoneFile(const string name); +#line 698 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool CheckDoneFile(const string name); +#line 720 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool GetLatestOHLC(datetime ×[], double &open_prices[], double &high_prices[], double &low_prices[], double &close_prices[], ENUM_TIMEFRAMES tf, int bars_count); +#line 774 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void RecordOHLC(const string filename, const datetime ×[], const double &open_prices[], const double &high_prices[], const double &low_prices[], const double &close_prices[]); +#line 829 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool ExecuteBatchTrend(); +#line 859 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool ExecuteBatchEntry(); +#line 889 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool RecordOHLCAndExecuteBatch_Trend(EAState &state); +#line 922 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool RecordOHLCAndExecuteBatch_Entry(EAState &state); +#line 956 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool GetTrendState(EAState &state); +#line 981 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void LoadTrendState(int &trend_state); +#line 1015 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool GetTargetPrices(EAState &state); +#line 1060 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +void LoadTargetPrices(double &target_prices[]); +#line 1113 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool SendOrder(int orderType, double price, double tp, double sl); +#line 1191 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 1210 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +string RequestComment(int orderType); +#line 1229 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool IsOrderTypeAllowedByTrend(const int orderType, const int trend_state); +#line 1251 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool HasValidTargetPrices(const double en, const double tp, const double sl); +#line 1264 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +int CountMyPendingOrders(); +#line 1297 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +int CountMyPositions(); +#line 1327 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +int CountMyUsed(); +#line 1343 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool CancelExpiredOrders(); +#line 1402 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +bool CloseExpiredPositions(); +#line 1487 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" +int GetBarShiftByTime(datetime time, ENUM_TIMEFRAMES tf, int default_shift); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver2.4914830b.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver2.4914830b.auto.mqh new file mode 100644 index 0000000..7888ffb --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver2.4914830b.auto.mqh @@ -0,0 +1,129 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_4914830B59E597AA +#define MQL_AUTO_FORWARDS_INCLUDED_4914830B59E597AA +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5 + +#line 245 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool GetTickContext(TickContext &ctx); +#line 269 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void ManageExpiredTrades(); +#line 288 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void ProcessTrendUpdate(EAState &state); +#line 315 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsTrendResultReady(); +#line 328 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void RefreshTrendState(EAState &state); +#line 343 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void ProcessEntryUpdate(EAState &state); +#line 374 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +string BuildStatusMessage(TickContext &ctx); +#line 410 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void UpdateStatusComment(TickContext &ctx); +#line 424 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsSpreadAllowed(TickContext &ctx); +#line 437 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsEntryResultReady(); +#line 450 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void RefreshTargetPrices(EAState &state); +#line 466 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void ProcessEntryDecisionIfNeeded(EAState &state, TickContext &ctx); +#line 490 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool ShouldRunEntryDecision(EAState &state); +#line 506 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool ValidateEntryPreconditions(EAState &state); +#line 549 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +int SendAllowedEntryOrders(EAState &state, TickContext &ctx); +#line 586 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool TrySendEntryOrder(const int orderType, EAState &state, TickContext &ctx); +#line 633 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +string EntryTypeName(const int orderType); +#line 660 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +double CurrentPriceForOrderType(const int orderType, TickContext &ctx); +#line 681 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsTargetPriceOrderConditionMatched(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 715 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool MeetsTradeDistanceRules(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 765 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void UpdateEntryRetryState(EAState &state, const int sent_success); +#line 794 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void CreateDoneFile(const string name); +#line 814 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void DeleteDoneFile(const string name); +#line 830 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool CheckDoneFile(const string name); +#line 843 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void CreateRunningFile(const string name, const uint process_id); +#line 864 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void DeleteRunningFile(const string name); +#line 879 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +datetime LoadRunningStartedAt(const string name); +#line 905 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +uint LoadRunningProcessId(const string name); +#line 938 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsRunningFileTimedOut(const string name); +#line 950 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void ResetExternalProcessState(ExternalProcessState &process); +#line 966 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool AttachRunningProcess(const string running_file, const string label, ExternalProcessState &process); +#line 994 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool UpdateExternalProcessStatus(ExternalProcessState &process, const string label); +#line 1030 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsExternalProcessTimedOut(ExternalProcessState &process, const string running_file); +#line 1044 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool StartBatchProcess(const string bat_file, const string running_file, const string label, ExternalProcessState &process); +#line 1100 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void PrepareDoneFileOnInit(const string done_file, const string running_file, const string label); +#line 1133 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsProcessResultReady(const string done_file, const string running_file, const string result_file, const string label, ExternalProcessState &process); +#line 1179 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsProcessStartAllowed(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1234 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void RecoverTimedOutPythonProcesses(); +#line 1262 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool RecoverTimedOutProcess(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1325 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool GetLatestOHLC(datetime ×[], double &open_prices[], double &high_prices[], double &low_prices[], double &close_prices[], ENUM_TIMEFRAMES tf, int bars_count); +#line 1380 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool RecordOHLC(const string filename, const datetime ×[], const double &open_prices[], const double &high_prices[], const double &low_prices[], const double &close_prices[]); +#line 1436 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool ExecuteBatchTrend(); +#line 1455 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool ExecuteBatchEntry(); +#line 1474 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool RecordOHLCAndExecuteBatch_Trend(EAState &state); +#line 1508 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool RecordOHLCAndExecuteBatch_Entry(EAState &state); +#line 1543 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool GetTrendState(EAState &state); +#line 1568 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void LoadTrendState(int &trend_state); +#line 1602 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool GetTargetPrices(EAState &state); +#line 1647 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void LoadTargetPrices(double &target_prices[]); +#line 1700 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool SendOrder(int orderType, double price, double tp, double sl); +#line 1779 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 1797 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +void ApplyPendingOrderExpiration(MqlTradeRequest &request); +#line 1836 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +string RequestComment(int orderType); +#line 1855 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool IsOrderTypeAllowedByTrend(const int orderType, const int trend_state); +#line 1877 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool HasValidTargetPrices(const double en, const double tp, const double sl); +#line 1890 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +int CountMyPendingOrders(); +#line 1923 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +int CountMyPositions(); +#line 1953 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +int CountMyUsed(); +#line 1969 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool CancelExpiredOrders(); +#line 2028 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +bool CloseExpiredPositions(); +#line 2113 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" +int GetBarShiftByTime(datetime time, ENUM_TIMEFRAMES tf, int default_shift); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver3.9d52c52b.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver3.9d52c52b.auto.mqh new file mode 100644 index 0000000..bcd5f39 --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver3.9d52c52b.auto.mqh @@ -0,0 +1,141 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_9D52C52B2EF1E2BC +#define MQL_AUTO_FORWARDS_INCLUDED_9D52C52B2EF1E2BC +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5 + +#line 267 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool GetTickContext(TickContext &ctx); +#line 291 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ManageExpiredTrades(); +#line 310 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ProcessTrendUpdate(EAState &state); +#line 337 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsTrendResultReady(); +#line 350 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void RefreshTrendState(EAState &state); +#line 365 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ProcessEntryUpdate(EAState &state); +#line 396 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ProcessM15EntryTimingUpdate(); +#line 426 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +string BuildStatusMessage(TickContext &ctx); +#line 462 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void UpdateStatusComment(TickContext &ctx); +#line 476 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +string MarketStateName(const int market_state); +#line 508 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsSpreadAllowed(TickContext &ctx); +#line 521 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsEntryResultReady(); +#line 534 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void RefreshTargetPrices(EAState &state); +#line 550 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ProcessEntryDecisionIfNeeded(EAState &state, TickContext &ctx); +#line 575 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool ShouldRunEntryDecision(EAState &state); +#line 591 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool ValidateEntryPreconditions(EAState &state); +#line 641 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsTargetCandidateExpired(EAState &state); +#line 663 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +int SendAllowedEntryOrders(EAState &state, TickContext &ctx); +#line 701 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool TrySendEntryOrder(const int orderType, EAState &state, TickContext &ctx); +#line 754 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +string EntryTypeName(const int orderType); +#line 781 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +double CurrentPriceForOrderType(const int orderType, TickContext &ctx); +#line 802 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsTargetPriceOrderConditionMatched(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 837 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsM15EntryTimingConfirmed(const int orderType, TickContext &ctx, const double en); +#line 880 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +double AverageM15Range(const MqlRates &rates[], const int count); +#line 914 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsM15SignalAligned(const int orderType, const MqlRates &prev_bar, const MqlRates &last_bar, const double en, const double entry_zone); +#line 959 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +double SafeBarRange(const MqlRates &bar); +#line 981 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool MeetsTradeDistanceRules(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 1031 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void UpdateEntryRetryState(EAState &state, const int sent_success); +#line 1061 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void CreateDoneFile(const string name); +#line 1081 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void DeleteDoneFile(const string name); +#line 1097 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool CheckDoneFile(const string name); +#line 1110 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void CreateRunningFile(const string name, const uint process_id); +#line 1131 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void DeleteRunningFile(const string name); +#line 1146 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +datetime LoadRunningStartedAt(const string name); +#line 1172 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +uint LoadRunningProcessId(const string name); +#line 1205 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsRunningFileTimedOut(const string name); +#line 1217 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ResetExternalProcessState(ExternalProcessState &process); +#line 1233 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool AttachRunningProcess(const string running_file, const string label, ExternalProcessState &process); +#line 1261 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool UpdateExternalProcessStatus(ExternalProcessState &process, const string label); +#line 1297 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsExternalProcessTimedOut(ExternalProcessState &process, const string running_file); +#line 1311 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool StartBatchProcess(const string bat_file, const string running_file, const string label, ExternalProcessState &process); +#line 1367 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void PrepareDoneFileOnInit(const string done_file, const string running_file, const string label); +#line 1400 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsProcessResultReady(const string done_file, const string running_file, const string result_file, const string label, ExternalProcessState &process); +#line 1446 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsProcessStartAllowed(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1501 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void RecoverTimedOutPythonProcesses(); +#line 1530 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool RecoverTimedOutProcess(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1593 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool GetLatestOHLC(datetime ×[], double &open_prices[], double &high_prices[], double &low_prices[], double &close_prices[], ENUM_TIMEFRAMES tf, int bars_count); +#line 1648 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool RecordOHLC(const string filename, const datetime ×[], const double &open_prices[], const double &high_prices[], const double &low_prices[], const double &close_prices[]); +#line 1704 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool ExecuteBatchTrend(); +#line 1723 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool ExecuteBatchEntry(); +#line 1742 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool RecordOHLCAndExecuteBatch_Trend(EAState &state); +#line 1776 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool RecordOHLCAndExecuteBatch_Entry(EAState &state); +#line 1811 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool GetTrendState(EAState &state); +#line 1836 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void LoadTrendState(int &trend_state); +#line 1870 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool GetTargetPrices(EAState &state); +#line 1916 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void LoadTargetPrices(double &target_prices[]); +#line 1969 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool SendOrder(int orderType, double price, double tp, double sl); +#line 2048 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 2066 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +void ApplyPendingOrderExpiration(MqlTradeRequest &request); +#line 2105 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +string RequestComment(int orderType); +#line 2124 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool IsOrderTypeAllowedByTrend(const int orderType, const int trend_state); +#line 2157 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool HasValidTargetPrices(const double en, const double tp, const double sl); +#line 2170 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +int CountMyPendingOrders(); +#line 2203 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +int CountMyPositions(); +#line 2233 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +int CountMyUsed(); +#line 2249 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool CancelExpiredOrders(); +#line 2308 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" +bool CloseExpiredPositions(); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver3_restore.9e59dbee.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver3_restore.9e59dbee.auto.mqh new file mode 100644 index 0000000..3f89a41 --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver3_restore.9e59dbee.auto.mqh @@ -0,0 +1,145 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_9E59DBEED0735B14 +#define MQL_AUTO_FORWARDS_INCLUDED_9E59DBEED0735B14 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5 + +#line 267 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool GetTickContext(TickContext &ctx); +#line 291 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ManageExpiredTrades(); +#line 310 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ProcessTrendUpdate(EAState &state); +#line 337 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsTrendResultReady(); +#line 350 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void RefreshTrendState(EAState &state); +#line 365 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ProcessEntryUpdate(EAState &state); +#line 396 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ProcessM15EntryTimingUpdate(); +#line 426 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +string BuildStatusMessage(TickContext &ctx); +#line 462 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void UpdateStatusComment(TickContext &ctx); +#line 476 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +string MarketStateName(const int market_state); +#line 508 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsSpreadAllowed(TickContext &ctx); +#line 521 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsEntryResultReady(); +#line 534 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void RefreshTargetPrices(EAState &state); +#line 550 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ProcessEntryDecisionIfNeeded(EAState &state, TickContext &ctx); +#line 575 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool ShouldRunEntryDecision(EAState &state); +#line 591 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool ValidateEntryPreconditions(EAState &state); +#line 641 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsTargetCandidateExpired(EAState &state); +#line 663 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +int SendAllowedEntryOrders(EAState &state, TickContext &ctx); +#line 701 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool TrySendEntryOrder(const int orderType, EAState &state, TickContext &ctx); +#line 754 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +string EntryTypeName(const int orderType); +#line 781 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +double CurrentPriceForOrderType(const int orderType, TickContext &ctx); +#line 802 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsTargetPriceOrderConditionMatched(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 837 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsM15EntryTimingConfirmed(const int orderType, TickContext &ctx, const double en); +#line 882 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsTrendStopOrderType(const int orderType); +#line 897 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +double AverageM15Range(const MqlRates &rates[], const int count); +#line 931 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsM15SignalAligned(const int orderType, const MqlRates &prev_bar, const MqlRates &last_bar, const double en, const double entry_zone); +#line 976 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +double SafeBarRange(const MqlRates &bar); +#line 998 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool MeetsTradeDistanceRules(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 1048 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void UpdateEntryRetryState(EAState &state, const int sent_success); +#line 1078 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void CreateDoneFile(const string name); +#line 1098 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void DeleteDoneFile(const string name); +#line 1114 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool CheckDoneFile(const string name); +#line 1127 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void CreateRunningFile(const string name, const uint process_id); +#line 1148 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void DeleteRunningFile(const string name); +#line 1163 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +datetime LoadRunningStartedAt(const string name); +#line 1189 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +uint LoadRunningProcessId(const string name); +#line 1222 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsRunningFileTimedOut(const string name); +#line 1234 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ResetExternalProcessState(ExternalProcessState &process); +#line 1250 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool AttachRunningProcess(const string running_file, const string label, ExternalProcessState &process); +#line 1278 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool UpdateExternalProcessStatus(ExternalProcessState &process, const string label); +#line 1314 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsExternalProcessTimedOut(ExternalProcessState &process, const string running_file); +#line 1328 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool StartBatchProcess(const string bat_file, const string running_file, const string label, ExternalProcessState &process); +#line 1384 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void PrepareDoneFileOnInit(const string done_file, const string running_file, const string label); +#line 1417 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsProcessResultReady(const string done_file, const string running_file, const string result_file, const string label, ExternalProcessState &process); +#line 1463 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsProcessStartAllowed(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1518 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void RecoverTimedOutPythonProcesses(); +#line 1547 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool RecoverTimedOutProcess(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1610 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool GetLatestOHLC(datetime ×[], double &open_prices[], double &high_prices[], double &low_prices[], double &close_prices[], ENUM_TIMEFRAMES tf, int bars_count); +#line 1665 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool RecordOHLC(const string filename, const datetime ×[], const double &open_prices[], const double &high_prices[], const double &low_prices[], const double &close_prices[]); +#line 1721 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool ExecuteBatchTrend(); +#line 1740 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool ExecuteBatchEntry(); +#line 1759 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool RecordOHLCAndExecuteBatch_Trend(EAState &state); +#line 1793 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool RecordOHLCAndExecuteBatch_Entry(EAState &state); +#line 1828 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool GetTrendState(EAState &state); +#line 1853 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void LoadTrendState(int &trend_state); +#line 1887 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool GetTargetPrices(EAState &state); +#line 1933 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void LoadTargetPrices(double &target_prices[]); +#line 1986 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool SendOrder(int orderType, double price, double tp, double sl); +#line 2065 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 2083 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +void ApplyPendingOrderExpiration(MqlTradeRequest &request); +#line 2122 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +string RequestComment(int orderType); +#line 2141 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool IsOrderTypeAllowedByTrend(const int orderType, const int trend_state); +#line 2174 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool HasValidTargetPrices(const double en, const double tp, const double sl); +#line 2187 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +int CountMyPendingOrders(); +#line 2220 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +int CountMyPositions(); +#line 2250 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +int CountMyUsed(); +#line 2266 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool CancelExpiredOrders(); +#line 2325 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +bool CloseExpiredPositions(); +#line 2410 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" +int GetBarShiftByTime(datetime time, ENUM_TIMEFRAMES tf, int default_shift); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver4.ca569fc9.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver4.ca569fc9.auto.mqh new file mode 100644 index 0000000..1419a68 --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver4.ca569fc9.auto.mqh @@ -0,0 +1,141 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_CA569FC9DF595747 +#define MQL_AUTO_FORWARDS_INCLUDED_CA569FC9DF595747 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5 + +#line 267 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool GetTickContext(TickContext &ctx); +#line 291 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ManageExpiredTrades(); +#line 310 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ProcessTrendUpdate(EAState &state); +#line 337 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsTrendResultReady(); +#line 350 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void RefreshTrendState(EAState &state); +#line 365 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ProcessEntryUpdate(EAState &state); +#line 396 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ProcessM15EntryTimingUpdate(); +#line 426 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +string BuildStatusMessage(TickContext &ctx); +#line 462 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void UpdateStatusComment(TickContext &ctx); +#line 476 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +string MarketStateName(const int market_state); +#line 508 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsSpreadAllowed(TickContext &ctx); +#line 521 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsEntryResultReady(); +#line 534 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void RefreshTargetPrices(EAState &state); +#line 550 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ProcessEntryDecisionIfNeeded(EAState &state, TickContext &ctx); +#line 575 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool ShouldRunEntryDecision(EAState &state); +#line 591 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool ValidateEntryPreconditions(EAState &state); +#line 641 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsTargetCandidateExpired(EAState &state); +#line 663 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +int SendAllowedEntryOrders(EAState &state, TickContext &ctx); +#line 701 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool TrySendEntryOrder(const int orderType, EAState &state, TickContext &ctx); +#line 754 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +string EntryTypeName(const int orderType); +#line 781 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +double CurrentPriceForOrderType(const int orderType, TickContext &ctx); +#line 802 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsTargetPriceOrderConditionMatched(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 837 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsM15EntryTimingConfirmed(const int orderType, TickContext &ctx, const double en); +#line 880 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +double AverageM15Range(const MqlRates &rates[], const int count); +#line 914 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsM15SignalAligned(const int orderType, const MqlRates &prev_bar, const MqlRates &last_bar, const double en, const double entry_zone); +#line 959 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +double SafeBarRange(const MqlRates &bar); +#line 981 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool MeetsTradeDistanceRules(const int orderType, TickContext &ctx, const double en, const double tp, const double sl); +#line 1031 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void UpdateEntryRetryState(EAState &state, const int sent_success); +#line 1061 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void CreateDoneFile(const string name); +#line 1081 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void DeleteDoneFile(const string name); +#line 1097 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool CheckDoneFile(const string name); +#line 1110 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void CreateRunningFile(const string name, const uint process_id); +#line 1131 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void DeleteRunningFile(const string name); +#line 1146 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +datetime LoadRunningStartedAt(const string name); +#line 1172 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +uint LoadRunningProcessId(const string name); +#line 1205 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsRunningFileTimedOut(const string name); +#line 1217 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ResetExternalProcessState(ExternalProcessState &process); +#line 1233 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool AttachRunningProcess(const string running_file, const string label, ExternalProcessState &process); +#line 1261 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool UpdateExternalProcessStatus(ExternalProcessState &process, const string label); +#line 1297 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsExternalProcessTimedOut(ExternalProcessState &process, const string running_file); +#line 1311 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool StartBatchProcess(const string bat_file, const string running_file, const string label, ExternalProcessState &process); +#line 1367 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void PrepareDoneFileOnInit(const string done_file, const string running_file, const string label); +#line 1400 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsProcessResultReady(const string done_file, const string running_file, const string result_file, const string label, ExternalProcessState &process); +#line 1446 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsProcessStartAllowed(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1501 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void RecoverTimedOutPythonProcesses(); +#line 1530 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool RecoverTimedOutProcess(const string done_file, const string running_file, const string label, ExternalProcessState &process); +#line 1593 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool GetLatestOHLC(datetime ×[], double &open_prices[], double &high_prices[], double &low_prices[], double &close_prices[], ENUM_TIMEFRAMES tf, int bars_count); +#line 1648 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool RecordOHLC(const string filename, const datetime ×[], const double &open_prices[], const double &high_prices[], const double &low_prices[], const double &close_prices[]); +#line 1704 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool ExecuteBatchTrend(); +#line 1723 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool ExecuteBatchEntry(); +#line 1742 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool RecordOHLCAndExecuteBatch_Trend(EAState &state); +#line 1776 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool RecordOHLCAndExecuteBatch_Entry(EAState &state); +#line 1811 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool GetTrendState(EAState &state); +#line 1836 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void LoadTrendState(int &trend_state); +#line 1870 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool GetTargetPrices(EAState &state); +#line 1916 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void LoadTargetPrices(double &target_prices[]); +#line 1969 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool SendOrder(int orderType, double price, double tp, double sl); +#line 2048 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 2066 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +void ApplyPendingOrderExpiration(MqlTradeRequest &request); +#line 2105 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +string RequestComment(int orderType); +#line 2124 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool IsOrderTypeAllowedByTrend(const int orderType, const int trend_state); +#line 2157 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool HasValidTargetPrices(const double en, const double tp, const double sl); +#line 2170 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +int CountMyPendingOrders(); +#line 2203 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +int CountMyPositions(); +#line 2233 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +int CountMyUsed(); +#line 2249 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool CancelExpiredOrders(); +#line 2308 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" +bool CloseExpiredPositions(); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver5.2b1e831b.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver5.2b1e831b.auto.mqh new file mode 100644 index 0000000..aabc56c --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver5.2b1e831b.auto.mqh @@ -0,0 +1,17 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_2B1E831B48ED62C8 +#define MQL_AUTO_FORWARDS_INCLUDED_2B1E831B48ED62C8 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5 + +#line 344 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" +string SLTPBoolText(const bool value); +#line 349 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" +void LoadSLTPInputSettings(SLTPManagerPanelSettings &settings); +#line 374 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" +bool ApplySLTPSettings(const SLTPManagerPanelSettings &settings, const bool print_summary); +#line 420 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" +bool InitializeSLTPManager(); +#line 444 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" +void ManageSLTPPositions(); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver6.0606879f.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver6.0606879f.auto.mqh new file mode 100644 index 0000000..3dbd55d --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver6.0606879f.auto.mqh @@ -0,0 +1,35 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_0606879F41E1B67C +#define MQL_AUTO_FORWARDS_INCLUDED_0606879F41E1B67C +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5 + +#line 269 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string MQL5RootPath(); +#line 280 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string PythonAppDir(); +#line 291 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string PythonBatchPath(const string filename); +#line 302 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +bool IsSafeFileTokenChar(const int ch); +#line 316 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string SanitizeFileToken(const string value); +#line 341 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string BuildMT5FilePrefix(); +#line 352 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string PrefixedMT5FileName(const string base_name); +#line 366 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +void ConfigurePythonGatewayFileNames(); +#line 389 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +void ConfigurePythonGatewayPaths(); +#line 509 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +string SLTPBoolText(const bool value); +#line 514 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +void LoadSLTPInputSettings(SLTPManagerPanelSettings &settings); +#line 539 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +bool ApplySLTPSettings(const SLTPManagerPanelSettings &settings, const bool print_summary); +#line 585 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +bool InitializeSLTPManager(); +#line 609 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" +void ManageSLTPPositions(); + +#endif diff --git a/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh b/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh new file mode 100644 index 0000000..3e2e630 --- /dev/null +++ b/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh @@ -0,0 +1,35 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_A28FB657951C5DDB +#define MQL_AUTO_FORWARDS_INCLUDED_A28FB657951C5DDB +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5 + +#line 250 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string MQL5RootPath(); +#line 261 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string PythonAppDir(); +#line 272 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string PythonBatchPath(const string filename); +#line 283 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +bool IsSafeFileTokenChar(const int ch); +#line 297 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string SanitizeFileToken(const string value); +#line 322 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string BuildMT5FilePrefix(); +#line 333 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string PrefixedMT5FileName(const string base_name); +#line 347 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +void ConfigurePythonGatewayFileNames(); +#line 370 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +void ConfigurePythonGatewayPaths(); +#line 487 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +string SLTPBoolText(const bool value); +#line 492 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +void LoadSLTPInputSettings(SLTPManagerPanelSettings &settings); +#line 517 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +bool ApplySLTPSettings(const SLTPManagerPanelSettings &settings, const bool print_summary); +#line 563 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +bool InitializeSLTPManager(); +#line 587 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" +void ManageSLTPPositions(); + +#endif diff --git a/.mql-auto-forwards/HistogramChartSample.91c16b25.auto.mqh b/.mql-auto-forwards/HistogramChartSample.91c16b25.auto.mqh new file mode 100644 index 0000000..e6e6730 --- /dev/null +++ b/.mql-auto-forwards/HistogramChartSample.91c16b25.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_91C16B255C7E9289 +#define MQL_AUTO_FORWARDS_INCLUDED_91C16B255C7E9289 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/HistogramChartSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/LineChartSample.59d6116a.auto.mqh b/.mql-auto-forwards/LineChartSample.59d6116a.auto.mqh new file mode 100644 index 0000000..054454c --- /dev/null +++ b/.mql-auto-forwards/LineChartSample.59d6116a.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_59D6116AA23C57CE +#define MQL_AUTO_FORWARDS_INCLUDED_59D6116AA23C57CE +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/LineChartSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/MatrixMult.2e7990e3.auto.mqh b/.mql-auto-forwards/MatrixMult.2e7990e3.auto.mqh new file mode 100644 index 0000000..a4b3a94 --- /dev/null +++ b/.mql-auto-forwards/MatrixMult.2e7990e3.auto.mqh @@ -0,0 +1,11 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_2E7990E38B74D88C +#define MQL_AUTO_FORWARDS_INCLUDED_2E7990E38B74D88C +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5 + +#line 16 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5" +define BLOCK_SIZE 10 bool MatrixMult_CPU(const float &matrix_a[], const float &matrix_b[], float &matrix_c[], const int rows_a, const int cols_a, const int cols_b, ulong &time_cpu); +#line 44 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5" +bool MatrixMult_GPU(const float &matrix_a[], const float &matrix_b[], float &matrix1_c[], float &matrix2_c[], const int rows_a, const int cols_a, const int cols_b, const int size_a, const int size_b, const int size_c, ulong &time1_gpu, ulong &time2_gpu); + +#endif diff --git a/.mql-auto-forwards/MatrixMult.8863193a.auto.mqh b/.mql-auto-forwards/MatrixMult.8863193a.auto.mqh new file mode 100644 index 0000000..b272301 --- /dev/null +++ b/.mql-auto-forwards/MatrixMult.8863193a.auto.mqh @@ -0,0 +1,11 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_8863193ADB2FB42C +#define MQL_AUTO_FORWARDS_INCLUDED_8863193ADB2FB42C +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5 + +#line 16 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5" +define BLOCK_SIZE 10 bool MatrixMult_CPU(const double &matrix_a[], const double &matrix_b[], double &matrix_c[], const int rows_a, const int cols_a, const int cols_b, ulong &time_cpu); +#line 44 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5" +bool MatrixMult_GPU(const double &matrix_a[], const double &matrix_b[], double &matrix1_c[], double &matrix2_c[], const int rows_a, const int cols_a, const int cols_b, const int size_a, const int size_b, const int size_c, ulong &time1_gpu, ulong &time2_gpu); + +#endif diff --git a/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh b/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh new file mode 100644 index 0000000..539acd2 --- /dev/null +++ b/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_341E64FA398F3C31 +#define MQL_AUTO_FORWARDS_INCLUDED_341E64FA398F3C31 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ObjChartSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/OrderInfoSample.c003532a.auto.mqh b/.mql-auto-forwards/OrderInfoSample.c003532a.auto.mqh new file mode 100644 index 0000000..da12f61 --- /dev/null +++ b/.mql-auto-forwards/OrderInfoSample.c003532a.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_C003532A3D198092 +#define MQL_AUTO_FORWARDS_INCLUDED_C003532A3D198092 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh b/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh new file mode 100644 index 0000000..55bcfdb --- /dev/null +++ b/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh @@ -0,0 +1,9 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_354D95DCD3828EA3 +#define MQL_AUTO_FORWARDS_INCLUDED_354D95DCD3828EA3 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/PieChartSample.mq5 + +#line 93 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/PieChartSample.mq5" +uint RandomRGB(void); + +#endif diff --git a/.mql-auto-forwards/PositionInfoSample.73cba22b.auto.mqh b/.mql-auto-forwards/PositionInfoSample.73cba22b.auto.mqh new file mode 100644 index 0000000..d73d7c1 --- /dev/null +++ b/.mql-auto-forwards/PositionInfoSample.73cba22b.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_73CBA22BCFB6FEDB +#define MQL_AUTO_FORWARDS_INCLUDED_73CBA22BCFB6FEDB +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/PositionInfo/PositionInfoSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/Remnant 3D.bb733e31.auto.mqh b/.mql-auto-forwards/Remnant 3D.bb733e31.auto.mqh new file mode 100644 index 0000000..e82251e --- /dev/null +++ b/.mql-auto-forwards/Remnant 3D.bb733e31.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_BB733E31A9114819 +#define MQL_AUTO_FORWARDS_INCLUDED_BB733E31A9114819 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Remnant 3D/Remnant 3D.mq5 + + +#endif diff --git a/.mql-auto-forwards/SLTP_Panel.44ea2bbd.auto.mqh b/.mql-auto-forwards/SLTP_Panel.44ea2bbd.auto.mqh new file mode 100644 index 0000000..9940f64 --- /dev/null +++ b/.mql-auto-forwards/SLTP_Panel.44ea2bbd.auto.mqh @@ -0,0 +1,75 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_44EA2BBDE109222B +#define MQL_AUTO_FORWARDS_INCLUDED_44EA2BBDE109222B +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5 + +#line 229 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ManageSltp(); +#line 239 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool CheckStopDistance(const ENUM_POSITION_TYPE type, const double new_sl); +#line 262 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool CheckTakeProfitDistance(const ENUM_POSITION_TYPE type, const double new_tp); +#line 285 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ManageStops(const ENUM_POSITION_TYPE side_filter); +#line 351 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void AdjustTakeProfit(const double pips_adjust, const ENUM_POSITION_TYPE side_filter); +#line 397 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ApplyFixedSLTP(const ENUM_POSITION_TYPE side_filter); +#line 448 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool CollectSideInfo(const ENUM_POSITION_TYPE side, double &avg_price, ulong &tickets[]); +#line 479 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ManageBuyBE(const bool show_line); +#line 497 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ManageSellBE(const bool show_line); +#line 515 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ExecuteSideBreakEven(const ENUM_POSITION_TYPE side, const double avg_price, ulong &tickets[]); +#line 532 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void UpdateSideStopLoss(const double line_price, ulong &tickets[], const ENUM_POSITION_TYPE side); +#line 563 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ApplyFixedSL(ulong &tickets[], const ENUM_POSITION_TYPE side, const double pips_from_open); +#line 595 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool CreatePanel(); +#line 650 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void CreateLabel(CLabel &label, const string name, const int x, const int y, const string text); +#line 668 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void CreateEdit(CEdit &edit, const string name, const int x, const int y); +#line 685 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void CreateButton(CButton &button, const string name, const int x, const int y, const int width, const int height, const string text, const color background, const color border, const color text_color); +#line 708 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void SetInitialValues(); +#line 720 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void UpdateInputValues(); +#line 732 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ApplyPanelValues(); +#line 753 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void ToggleInputLock(); +#line 777 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void SetInputsReadOnly(const bool read_only); +#line 789 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool ReadPanelDouble(CEdit &edit, const string label, const double min_value, const double max_value, const double fallback, double &out_value); +#line 811 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void UpdateToggleButton(CButton &button, const bool state); +#line 829 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void UpdateSideLine(const ENUM_POSITION_TYPE side, const bool show_line, const bool has_position, const double avg_price); +#line 852 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void DrawLineAndText(const string base, const double price, const color line_color, const string text); +#line 883 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void DeleteBreakEvenLine(const string base); +#line 889 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool PositionMatches(const ulong ticket); +#line 904 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +int CountPositions(const ENUM_POSITION_TYPE side_filter); +#line 920 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool TryModifyPosition(const ulong ticket, const double new_sl, const double new_tp, const string reason); +#line 944 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +bool IsBetterStop(const ENUM_POSITION_TYPE type, const double current_sl, const double candidate_sl); +#line 961 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void Push(ulong &items[], const ulong value); +#line 968 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +double NormalizePrice(const double price); +#line 975 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +double PipSize(const string symbol); +#line 994 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" +void DisplayPanelStatus(); + +#endif diff --git a/.mql-auto-forwards/SLTP_Panel_original_20260503_153540.fc92d045.auto.mqh b/.mql-auto-forwards/SLTP_Panel_original_20260503_153540.fc92d045.auto.mqh new file mode 100644 index 0000000..3569797 --- /dev/null +++ b/.mql-auto-forwards/SLTP_Panel_original_20260503_153540.fc92d045.auto.mqh @@ -0,0 +1,139 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_FC92D045A9101619 +#define MQL_AUTO_FORWARDS_INCLUDED_FC92D045A9101619 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5 + +#line 545 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool EnsureSTHandle(const int slot, const ENUM_TIMEFRAMES tf); +#line 581 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +int InitHandles(); +#line 621 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void UpdateAllSTHandles(); +#line 630 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool IsTradingTime(); +#line 667 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void HandleTradingTimeTransition(); +#line 704 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CreateDoneFlagFile(string fileName); +#line 726 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void DeleteDoneFlagFile(string fileName); +#line 740 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CheckDoneFlagFile(string fileName); +#line 751 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ResetPredictionFiles(const bool reset_last_time); +#line 786 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool IsSpreadOK(const double limit_points); +#line 803 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +TradeSide DecideEntrySide(); +#line 844 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ExecuteEntry(const TradeSide side); +#line 920 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool IsOutOfRange(const string symbol, const ENUM_TIMEFRAMES tf, const int periods, const double max_range); +#line 963 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool IsOutOfRangeShort(const string symbol, const ENUM_TIMEFRAMES tf, const int periods, const double max_range); +#line 1002 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +double AdjustPoint(string Currency); +#line 1032 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void DisplayEAValues(); +#line 1064 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CheckStopDistance(ENUM_POSITION_TYPE type, double price_now, double new_sl); +#line 1094 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ManageStops(const ENUM_STOPF_FILTER side_filter); +#line 1276 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void HighVolatilityLimit(); +#line 1487 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +inline int SecToBars(long seconds); +#line 1502 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool RunPythonBatch(const string bat_path, const int wait_sec); +#line 1538 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void PredictFlg(); +#line 1643 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool LoadPredictionOutcome(string file_name); +#line 1735 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ResetAfterTimeout(); +#line 1764 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void WriteIndicatorsToFile(string symbol, int timeframe, int count, string filename); +#line 2148 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CheckPositions(); +#line 2188 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +int CountPositions(const ENUM_POSITION_TYPE type, const uint magic); +#line 2219 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool PlaceEntryOrder(const TradeSide side, const int current_position, datetime &last_order_time, double limit_price); +#line 2334 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool SendOrder(const TradeSide side, double limit_price, double sl, double tp); +#line 2416 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CloseTimedPositions(const ENUM_POSITION_TYPE dir, const ENUM_ORDER_TYPE opos); +#line 2477 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 2504 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void AdjustTakeProfit(const double pips_adjust, const ENUM_POSITION_TYPE side_filter); +#line 2585 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +int EntryTrend(int &out_flag, double &out_st_now, double &out_hull_now, double ¤tOpen, double ¤tAsk); +#line 2658 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool SuperTrendDirection(int &out_trend_flag, double &out_value, int buffer_num); +#line 2695 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool SuperTrendDirection2nd(int &out_trend_flag, double &out_value, int buffer_num); +#line 2734 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool DevBandFilter(double &devbndValue); +#line 2769 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool ProcessPairChange(int &st_prev_flg, int &st_flg); +#line 2858 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void SetInitialValues(); +#line 2876 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void UpdateInputValues(); +#line 3092 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CreatePanel(); +#line 3719 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void Push(ulong &a[], const ulong v); +#line 3735 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void DrawLineAndText(const string base, double price, color clr, const string txt, double offset, int shift_bars, bool del); +#line 3787 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CollectSideInfo(const string sym, ulong magic, ENUM_POSITION_TYPE side, double &avg, ulong &tickets[]); +#line 3819 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void DrawSideBreakEvenLine(const string sym, double avg, double buf, ENUM_POSITION_TYPE side); +#line 3841 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void UpdateSideLine(ENUM_POSITION_TYPE side, bool show_line, bool has_pos, double avg_price); +#line 3867 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void UpdateSideStopLoss(const string sym, const double line_price, ulong &tickets[], const ENUM_POSITION_TYPE side); +#line 3932 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ExecuteSideBreakEven(const ENUM_POSITION_TYPE side, const double avg_price, ulong &tickets[]); +#line 3956 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ManageBuyBE(const bool show_line); +#line 3993 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ManageSellBE(const bool show_line); +#line 4029 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void ApplyFixedSL(ulong &tickets[], const ENUM_POSITION_TYPE side, const double pips_from_open); +#line 4082 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CreateRangeLine(const string name, const double price, const color clr); +#line 4100 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void EnsureRangeLines(); +#line 4119 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void DeleteRangeLines(); +#line 4128 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool GetRangePrices(double &upper, double &lower); +#line 4145 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +TradeSide HorizonLineRangeCheck(); +#line 4179 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +string TrainBatPath(); +#line 4217 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +string PredictBatPath(); +#line 4611 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CreateToggleButton(const bool state); +#line 4636 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void RefreshButtonAppearance(const bool state); +#line 4650 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void DebugCheck(bool buycheck); +#line 4710 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CheckDevBandFilter(double &devbndValue); +#line 4745 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +bool CheckPlaceEntryOrder(const TradeSide side); +#line 4812 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CheckExecuteEntry(const TradeSide side); +#line 4912 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CheckEntryTrend(); +#line 4926 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CheckSuperTrend(int buffer_num); +#line 4944 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" +void CheckSuperTrendSecond(int buffer_num); + +#endif diff --git a/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh b/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh new file mode 100644 index 0000000..504a471 --- /dev/null +++ b/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh @@ -0,0 +1,139 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_6D58833B3F6D6F70 +#define MQL_AUTO_FORWARDS_INCLUDED_6D58833B3F6D6F70 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5 + +#line 545 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool EnsureSTHandle(const int slot, const ENUM_TIMEFRAMES tf); +#line 581 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +int InitHandles(); +#line 621 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void UpdateAllSTHandles(); +#line 630 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool IsTradingTime(); +#line 667 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void HandleTradingTimeTransition(); +#line 704 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CreateDoneFlagFile(string fileName); +#line 726 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void DeleteDoneFlagFile(string fileName); +#line 740 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CheckDoneFlagFile(string fileName); +#line 751 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ResetPredictionFiles(const bool reset_last_time); +#line 786 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool IsSpreadOK(const double limit_points); +#line 803 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +TradeSide DecideEntrySide(); +#line 844 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ExecuteEntry(const TradeSide side); +#line 920 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool IsOutOfRange(const string symbol, const ENUM_TIMEFRAMES tf, const int periods, const double max_range); +#line 963 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool IsOutOfRangeShort(const string symbol, const ENUM_TIMEFRAMES tf, const int periods, const double max_range); +#line 1002 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +double AdjustPoint(string Currency); +#line 1032 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void DisplayEAValues(); +#line 1064 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CheckStopDistance(ENUM_POSITION_TYPE type, double price_now, double new_sl); +#line 1094 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ManageStops(const ENUM_STOPF_FILTER side_filter); +#line 1276 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void HighVolatilityLimit(); +#line 1487 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +inline int SecToBars(long seconds); +#line 1502 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool RunPythonBatch(const string bat_path, const int wait_sec); +#line 1538 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void PredictFlg(); +#line 1643 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool LoadPredictionOutcome(string file_name); +#line 1735 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ResetAfterTimeout(); +#line 1764 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void WriteIndicatorsToFile(string symbol, int timeframe, int count, string filename); +#line 2148 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CheckPositions(); +#line 2188 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +int CountPositions(const ENUM_POSITION_TYPE type, const uint magic); +#line 2219 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool PlaceEntryOrder(const TradeSide side, const int current_position, datetime &last_order_time, double limit_price); +#line 2334 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool SendOrder(const TradeSide side, double limit_price, double sl, double tp); +#line 2416 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CloseTimedPositions(const ENUM_POSITION_TYPE dir, const ENUM_ORDER_TYPE opos); +#line 2477 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +ENUM_ORDER_TYPE_FILLING GetOrderFillingPolicy(string symbol); +#line 2504 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void AdjustTakeProfit(const double pips_adjust, const ENUM_POSITION_TYPE side_filter); +#line 2585 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +int EntryTrend(int &out_flag, double &out_st_now, double &out_hull_now, double ¤tOpen, double ¤tAsk); +#line 2658 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool SuperTrendDirection(int &out_trend_flag, double &out_value, int buffer_num); +#line 2695 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool SuperTrendDirection2nd(int &out_trend_flag, double &out_value, int buffer_num); +#line 2734 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool DevBandFilter(double &devbndValue); +#line 2769 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool ProcessPairChange(int &st_prev_flg, int &st_flg); +#line 2858 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void SetInitialValues(); +#line 2876 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void UpdateInputValues(); +#line 3092 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CreatePanel(); +#line 3719 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void Push(ulong &a[], const ulong v); +#line 3735 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void DrawLineAndText(const string base, double price, color clr, const string txt, double offset, int shift_bars, bool del); +#line 3787 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CollectSideInfo(const string sym, ulong magic, ENUM_POSITION_TYPE side, double &avg, ulong &tickets[]); +#line 3819 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void DrawSideBreakEvenLine(const string sym, double avg, double buf, ENUM_POSITION_TYPE side); +#line 3841 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void UpdateSideLine(ENUM_POSITION_TYPE side, bool show_line, bool has_pos, double avg_price); +#line 3867 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void UpdateSideStopLoss(const string sym, const double line_price, ulong &tickets[], const ENUM_POSITION_TYPE side); +#line 3932 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ExecuteSideBreakEven(const ENUM_POSITION_TYPE side, const double avg_price, ulong &tickets[]); +#line 3956 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ManageBuyBE(const bool show_line); +#line 3993 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ManageSellBE(const bool show_line); +#line 4029 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void ApplyFixedSL(ulong &tickets[], const ENUM_POSITION_TYPE side, const double pips_from_open); +#line 4082 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CreateRangeLine(const string name, const double price, const color clr); +#line 4100 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void EnsureRangeLines(); +#line 4119 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void DeleteRangeLines(); +#line 4128 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool GetRangePrices(double &upper, double &lower); +#line 4145 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +TradeSide HorizonLineRangeCheck(); +#line 4179 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +string TrainBatPath(); +#line 4217 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +string PredictBatPath(); +#line 4611 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CreateToggleButton(const bool state); +#line 4636 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void RefreshButtonAppearance(const bool state); +#line 4650 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void DebugCheck(bool buycheck); +#line 4710 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CheckDevBandFilter(double &devbndValue); +#line 4745 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +bool CheckPlaceEntryOrder(const TradeSide side); +#line 4812 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CheckExecuteEntry(const TradeSide side); +#line 4912 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CheckEntryTrend(); +#line 4926 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CheckSuperTrend(int buffer_num); +#line 4944 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" +void CheckSuperTrendSecond(int buffer_num); + +#endif diff --git a/.mql-auto-forwards/Seascape.2803837b.auto.mqh b/.mql-auto-forwards/Seascape.2803837b.auto.mqh new file mode 100644 index 0000000..c76fc30 --- /dev/null +++ b/.mql-auto-forwards/Seascape.2803837b.auto.mqh @@ -0,0 +1,13 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_2803837B848A49C7 +#define MQL_AUTO_FORWARDS_INCLUDED_2803837B848A49C7 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Seascape/Seascape.mq5 + +#line 17 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Seascape/Seascape.mq5" +bool ModelInitialize(int &cl_ctx, int &cl_prg, int &cl_krn, int &cl_mem); +#line 76 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Seascape/Seascape.mq5" +bool ModelResize(const int cl_ctx, const int cl_krn, int &cl_mem); +#line 108 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Seascape/Seascape.mq5" +void ModelShutdown(int cl_ctx, int cl_prg, int cl_krn, int cl_mem); + +#endif diff --git a/.mql-auto-forwards/SphereSample.5acb5dc3.auto.mqh b/.mql-auto-forwards/SphereSample.5acb5dc3.auto.mqh new file mode 100644 index 0000000..3932e72 --- /dev/null +++ b/.mql-auto-forwards/SphereSample.5acb5dc3.auto.mqh @@ -0,0 +1,11 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_5ACB5DC3B62295AE +#define MQL_AUTO_FORWARDS_INCLUDED_5ACB5DC3B62295AE +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5 + +#line 32 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5" +int Init(void); +#line 55 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5" +void Deinit(void); + +#endif diff --git a/.mql-auto-forwards/SuperTrend_Custom.913f84d0.auto.mqh b/.mql-auto-forwards/SuperTrend_Custom.913f84d0.auto.mqh new file mode 100644 index 0000000..c8997e3 --- /dev/null +++ b/.mql-auto-forwards/SuperTrend_Custom.913f84d0.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_913F84D0A480706B +#define MQL_AUTO_FORWARDS_INCLUDED_913F84D0A480706B +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_Custom.mq5 + + +#endif diff --git a/.mql-auto-forwards/SuperTrend_CustomWithOffset.0091820d.auto.mqh b/.mql-auto-forwards/SuperTrend_CustomWithOffset.0091820d.auto.mqh new file mode 100644 index 0000000..60ad112 --- /dev/null +++ b/.mql-auto-forwards/SuperTrend_CustomWithOffset.0091820d.auto.mqh @@ -0,0 +1,9 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_0091820D9801137D +#define MQL_AUTO_FORWARDS_INCLUDED_0091820D9801137D +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_CustomWithOffset.mq5 + +#line 91 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_CustomWithOffset.mq5" +double PipPoint(string Currency); + +#endif diff --git a/.mql-auto-forwards/SuperTrend_Custom_20251203.a2fa19f2.auto.mqh b/.mql-auto-forwards/SuperTrend_Custom_20251203.a2fa19f2.auto.mqh new file mode 100644 index 0000000..a9b6fdc --- /dev/null +++ b/.mql-auto-forwards/SuperTrend_Custom_20251203.a2fa19f2.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_A2FA19F2F2B00979 +#define MQL_AUTO_FORWARDS_INCLUDED_A2FA19F2F2B00979 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_Custom_20251203.mq5 + + +#endif diff --git a/.mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh b/.mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh new file mode 100644 index 0000000..4c3403b --- /dev/null +++ b/.mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_B7AE972329AA640F +#define MQL_AUTO_FORWARDS_INCLUDED_B7AE972329AA640F +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/SymbolInfo/SymbolInfoSample.mq5 + + +#endif diff --git a/.mql-auto-forwards/TestArrayList.76e6c7c5.auto.mqh b/.mql-auto-forwards/TestArrayList.76e6c7c5.auto.mqh new file mode 100644 index 0000000..49eda84 --- /dev/null +++ b/.mql-auto-forwards/TestArrayList.76e6c7c5.auto.mqh @@ -0,0 +1,65 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_76E6C7C5F947CA70 +#define MQL_AUTO_FORWARDS_INCLUDED_76E6C7C5F947CA70 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +include bool TestAddRange_AsArrayList(const int count, const int add_length); +#line 51 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestAddRange_AsArray(const int count, const int add_length); +#line 90 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestAddRange_AsNULL(const int count); +#line 121 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestAddRange(const string test_name); +#line 143 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestBinarySearch_Validations(const int count); +#line 177 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestBinarySearch_WithoutDuplicates(const int count); +#line 201 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestBinarySearch_WithDuplicates(const int count); +#line 227 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestBinarySearch(const string test_name); +#line 249 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestIndexOf_NonExistingValues(const int count); +#line 268 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestIndexOf_OrderIsCorrect(const int count); +#line 300 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestIndexOf_Common(const int count); +#line 336 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestIndexOf_OutOfRange(const int count); +#line 361 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestIndexOf(const string test_name); +#line 387 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestMisc_BasicInsert(const int count); +#line 449 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestMisc_InsertRange(const int count); +#line 526 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestMisc_Contains(const int count); +#line 545 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestMisc_Remove(const int count); +#line 568 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestMisc_Clear(const int count); +#line 594 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestMisc(const string test_name); +#line 624 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestRemove_Range(const int count); +#line 680 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestRemove_Invalid(const int count); +#line 747 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestRemove(const string test_name); +#line 765 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestReverse_Range(const int count); +#line 829 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestReverse_Invalid(const int count); +#line 893 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestReverse(const string test_name); +#line 911 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestSort_WithDuplicates(const int count); +#line 941 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestSort_Invalid(const int count); +#line 976 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +bool TestSort(const string test_name); +#line 994 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestArrayList.mq5" +void TestArrayList(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestClasses.7e6865b2.auto.mqh b/.mql-auto-forwards/TestClasses.7e6865b2.auto.mqh new file mode 100644 index 0000000..1403768 --- /dev/null +++ b/.mql-auto-forwards/TestClasses.7e6865b2.auto.mqh @@ -0,0 +1,9 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_7E6865B26226F42F +#define MQL_AUTO_FORWARDS_INCLUDED_7E6865B26226F42F +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestClasses.mq5 + +#line 708 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestClasses.mq5" +string GetElapsed(ulong microseconds); + +#endif diff --git a/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh b/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh new file mode 100644 index 0000000..7cb0b25 --- /dev/null +++ b/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh @@ -0,0 +1,47 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_5FE06143237DE253 +#define MQL_AUTO_FORWARDS_INCLUDED_5FE06143237DE253 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5 + +#line 34 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +include bool Test_NormalCombinationMembershipFunction(); +#line 67 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_GeneralizedBellShapedMembershipFunction(); +#line 91 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_SigmoidalMembershipFunction(); +#line 114 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_ProductTwoSigmoidalMembershipFunctions(); +#line 140 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_TrapezoidMembershipFunction(); +#line 173 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_NormalMembershipFunction(); +#line 196 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_TriangularMembershipFunction(); +#line 232 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_ConstantMembershipFunction(); +#line 254 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_P_S_Z_ShapedMembershipFunction(); +#line 277 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_Bisector(); +#line 295 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_Centroid(); +#line 322 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_Defuzzification(); +#line 374 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_TipingProblem(); +#line 439 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool Test_TypicalFuzzyControlSystem(); +#line 511 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +void AddSugenoFuzzyRule(CSugenoFuzzySystem *fs, CFuzzyVariable *fv1, CFuzzyVariable *fv2, CSugenoVariable *sv, const string value1, const string value2, const string result); +#line 527 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool TestMembersipFunctions(const string test_name); +#line 573 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool TestDefuzzificationMethods(const string test_name); +#line 595 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +bool TestFuzzySystems(const string test_name); +#line 613 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +void TestFuzzy(int &tests_performed, int &tests_passed); +#line 643 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Fuzzy/TestFuzzy.mq5" +void UnitTests(const string package_name); + +#endif diff --git a/.mql-auto-forwards/TestHashMap.be102765.auto.mqh b/.mql-auto-forwards/TestHashMap.be102765.auto.mqh new file mode 100644 index 0000000..bbbfc37 --- /dev/null +++ b/.mql-auto-forwards/TestHashMap.be102765.auto.mqh @@ -0,0 +1,17 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_BE102765F52275B6 +#define MQL_AUTO_FORWARDS_INCLUDED_BE102765F52275B6 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashMap.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashMap.mq5" +include bool TestMisc_Constructor(const int count); +#line 43 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashMap.mq5" +bool TestMisc_Contains(const int count); +#line 86 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashMap.mq5" +bool TestMisc_Remove(const int count); +#line 137 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashMap.mq5" +bool TestMisc(const string test_name); +#line 159 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashMap.mq5" +void TestHashMap(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestHashSet.93ceb4a9.auto.mqh b/.mql-auto-forwards/TestHashSet.93ceb4a9.auto.mqh new file mode 100644 index 0000000..bbb5b03 --- /dev/null +++ b/.mql-auto-forwards/TestHashSet.93ceb4a9.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_93CEB4A9784F8D93 +#define MQL_AUTO_FORWARDS_INCLUDED_93CEB4A9784F8D93 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashSet.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashSet.mq5" +include bool TestMisc_Constructor(const int count); +#line 42 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashSet.mq5" +bool TestMisc_TrimExpress(const int count); +#line 102 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashSet.mq5" +bool TestMisc(const string test_name); +#line 120 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestHashSet.mq5" +void TestHashSet(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh b/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh new file mode 100644 index 0000000..8fbe7fa --- /dev/null +++ b/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_1F0599A026B84EF4 +#define MQL_AUTO_FORWARDS_INCLUDED_1F0599A026B84EF4 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestInterfaces.mq5 + + +#endif diff --git a/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh b/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh new file mode 100644 index 0000000..a1bfe27 --- /dev/null +++ b/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh @@ -0,0 +1,49 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_F0EAFCB070990DCB +#define MQL_AUTO_FORWARDS_INCLUDED_F0EAFCB070990DCB +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +include bool TestAddAfter_Node(const int count); +#line 213 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddAfter_Node_Negative(const int count); +#line 256 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddAfter(const string test_name); +#line 275 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddBefore_Node(const int count); +#line 482 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddBefore_Node_Negative(const int count); +#line 525 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddBefore(const string test_name); +#line 544 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddFirst_Node(const int count); +#line 678 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddFirst_Node_Negative(const int count); +#line 733 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddFirst(const string test_name); +#line 751 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddLast_Node(const int count); +#line 872 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddLast_Node_Negative(const int count); +#line 927 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestAddLast(const string test_name); +#line 945 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestConstructor_Complex(const int count); +#line 980 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestConstructor(const string test_name); +#line 994 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestMisc_Find(const int count); +#line 1160 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestMisc_FindLast(const int count); +#line 1326 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestMisc_RemoveNode(const int count); +#line 1646 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestMisc_RemoveFirst(const int count); +#line 1770 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestMisc_RemoveLast(const int count); +#line 1899 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +bool TestMisc(const string test_name); +#line 1929 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestLinkedList.mq5" +void TestLinkedList(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestQueue.9fbbf7ab.auto.mqh b/.mql-auto-forwards/TestQueue.9fbbf7ab.auto.mqh new file mode 100644 index 0000000..9d58d2c --- /dev/null +++ b/.mql-auto-forwards/TestQueue.9fbbf7ab.auto.mqh @@ -0,0 +1,25 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_9FBBF7ABE49E50A5 +#define MQL_AUTO_FORWARDS_INCLUDED_9FBBF7ABE49E50A5 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +include bool TestConstructor_Valid(const int count); +#line 49 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestConstructor_Invalid(const int count); +#line 65 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestConstructor(const string test_name); +#line 83 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestMisc_Dequeue(const int count); +#line 105 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestMisc_Peek(const int count); +#line 126 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestMisc_Complex(const int count); +#line 160 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestMisc_TrimExcess(const int count); +#line 198 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +bool TestMisc(const string test_name); +#line 224 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestQueue.mq5" +void TestQueue(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh b/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh new file mode 100644 index 0000000..69ef98e --- /dev/null +++ b/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh @@ -0,0 +1,31 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_285A3D310E563F12 +#define MQL_AUTO_FORWARDS_INCLUDED_285A3D310E563F12 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5 + +#line 12 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +include bool TestMisc_Constructor(const int count); +#line 48 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestMisc_Contains(const int count); +#line 80 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestMisc_Add(const int count); +#line 106 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestMisc(const string test_name); +#line 128 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestFind_Max(const int count); +#line 153 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestFind_Min(const int count); +#line 178 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestFind(const string test_name); +#line 196 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestRemove_Node(const int count); +#line 242 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestRemove_Max(const int count); +#line 270 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestRemove_Min(const int count); +#line 298 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +bool TestRemove(const string test_name); +#line 320 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestRedBlackTree.mq5" +void TestRedBlackTree(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh b/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh new file mode 100644 index 0000000..1750334 --- /dev/null +++ b/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh @@ -0,0 +1,17 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_F0CDE49CD36EE893 +#define MQL_AUTO_FORWARDS_INCLUDED_F0CDE49CD36EE893 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedMap.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedMap.mq5" +include bool TestMisc_Constructor(const int count); +#line 43 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedMap.mq5" +bool TestMisc_Contains(const int count); +#line 86 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedMap.mq5" +bool TestMisc_Ordering(const int count); +#line 138 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedMap.mq5" +bool TestMisc(const string test_name); +#line 160 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedMap.mq5" +void TestSortedMap(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh b/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh new file mode 100644 index 0000000..b531c55 --- /dev/null +++ b/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_667F905F7001A8C2 +#define MQL_AUTO_FORWARDS_INCLUDED_667F905F7001A8C2 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedSet.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedSet.mq5" +include bool TestMisc_Constructor(const int count); +#line 54 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedSet.mq5" +bool TestMisc_GetViewBetween(const int count); +#line 102 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedSet.mq5" +bool TestMisc(const string test_name); +#line 120 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestSortedSet.mq5" +void TestSortedSet(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestStack.5271212b.auto.mqh b/.mql-auto-forwards/TestStack.5271212b.auto.mqh new file mode 100644 index 0000000..64e829d --- /dev/null +++ b/.mql-auto-forwards/TestStack.5271212b.auto.mqh @@ -0,0 +1,25 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_5271212BCF47E690 +#define MQL_AUTO_FORWARDS_INCLUDED_5271212BCF47E690 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5 + +#line 11 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +include bool TestConstructor_Valid(const int count); +#line 49 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestConstructor_Invalid(const int count); +#line 65 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestConstructor(const string test_name); +#line 83 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestMisc_Pop(const int count); +#line 105 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestMisc_Peek(const int count); +#line 126 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestMisc_Complex(const int count); +#line 160 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestMisc_TrimExcess(const int count); +#line 198 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +bool TestMisc(const string test_name); +#line 224 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Generic/TestStack.mq5" +void TestStack(int &tests_performed, int &tests_passed); + +#endif diff --git a/.mql-auto-forwards/TestStat.c52e7569.auto.mqh b/.mql-auto-forwards/TestStat.c52e7569.auto.mqh new file mode 100644 index 0000000..04eaad6 --- /dev/null +++ b/.mql-auto-forwards/TestStat.c52e7569.auto.mqh @@ -0,0 +1,57 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_C52E756923511659 +#define MQL_AUTO_FORWARDS_INCLUDED_C52E756923511659 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5 + +#line 690 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +int GetCorrectDigits(const double delta); +#line 721 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestBinomialDistribution(string test_name, const double n, const double probability, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 905 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestBetaDistribution(string test_name, const double a, const double b, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 1089 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestGammaDistribution(string test_name, const double a, const double b, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 1273 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestCauchyDistribution(string test_name, const double a, const double b, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 1451 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestExponentialDistribution(string test_name, const double mu, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 1635 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestUnifromDistribution(string test_name, const double a, const double b, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 1819 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestGeometricDistribution(string test_name, const double p, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 2003 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestHypergeometricDistribution(string test_name, const double m, const double k, const double n, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 2187 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestLogisticDistribution(string test_name, const double mu, const double sigma, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 2371 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestWeibullDistribution(string test_name, const double a, const double b, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 2555 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestPoissonDistribution(string test_name, const double lambda, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 2739 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestFDistribution(string test_name, const double nu1, const double nu2, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 2924 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestChiSquareDistribution(string test_name, const double nu, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 3108 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestNoncentralChiSquareDistribution(string test_name, const double nu, const double sigma, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 3293 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestNoncentralFDistribution(string test_name, const double nu1, const double nu2, const double sigma, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 3478 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestNoncentralBetaDistribution(string test_name, const double a, const double b, const double lambda, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 3663 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestNegativeBinomialDistribution(string test_name, const double r, const double p, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 3847 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestTDistribution(string test_name, const double nu, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 4031 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestNoncentralTDistribution(string test_name, const double nu, const double delta, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 4215 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestNormalDistribution(string test_name, const double mu, const double sigma, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 4400 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +bool TestLognormalDistribution(string test_name, const double mu, const double sigma, const double &x_values[], const double &pdf_values[], const double &cdf_values[], precision_info &precision); +#line 4584 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +void ShowPrecisionInfo(const string distribution, precision_info &precision); +#line 4596 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +void TestDistributions(int &tests_performed, int &tests_passed); +#line 4837 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" +void UnitTests(const string package_name); + +#endif diff --git a/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh b/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh new file mode 100644 index 0000000..349c776 --- /dev/null +++ b/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh @@ -0,0 +1,55 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_A4CE858F6174B574 +#define MQL_AUTO_FORWARDS_INCLUDED_A4CE858F6174B574 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5 + +#line 71 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +define AverageCount 1000 void ShowBenchmarkInfo(const string test_info, benchmark_info &benchmark); +#line 85 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +void CalculateStatisticalProperties(benchmark_info &benchmark, double &pdf_times[], double &cdf_times[], double &quantile_times[], double &random_times[]); +#line 121 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkBinomial(benchmark_info &benchmark_binomial, int &tests_performed, int &tests_passed); +#line 184 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkBeta(benchmark_info &benchmark_beta, int &tests_performed, int &tests_passed); +#line 249 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkGamma(benchmark_info &benchmark_gamma, int &tests_performed, int &tests_passed); +#line 314 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkCauchy(benchmark_info &benchmark_cauchy, int &tests_performed, int &tests_passed); +#line 379 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkExponential(benchmark_info &benchmark_exponential, int &tests_performed, int &tests_passed); +#line 443 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkUniform(benchmark_info &benchmark_uniform, int &tests_performed, int &tests_passed); +#line 508 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkGeometric(benchmark_info &benchmark_geometric, int &tests_performed, int &tests_passed); +#line 572 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkHypergeometric(benchmark_info &benchmark_hypergeometric, int &tests_performed, int &tests_passed); +#line 638 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkLogistic(benchmark_info &benchmark_logistic, int &tests_performed, int &tests_passed); +#line 703 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkWeibull(benchmark_info &benchmark_weibull, int &tests_performed, int &tests_passed); +#line 768 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkPoisson(benchmark_info &benchmark_poisson, int &tests_performed, int &tests_passed); +#line 832 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkF(benchmark_info &benchmark_f, int &tests_performed, int &tests_passed); +#line 897 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkChiSquare(benchmark_info &benchmark_chisquare, int &tests_performed, int &tests_passed); +#line 961 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkNoncentralChiSquare(benchmark_info &benchmark_noncentral_chisquare, int &tests_performed, int &tests_passed); +#line 1026 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkNoncentralF(benchmark_info &benchmark_noncentral_f, int &tests_performed, int &tests_passed); +#line 1092 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkNoncentralBeta(benchmark_info &benchmark_noncentral_beta, int &tests_performed, int &tests_passed); +#line 1158 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkNegativeBinomial(benchmark_info &benchmark_negative_binomial, int &tests_performed, int &tests_passed); +#line 1223 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkT(benchmark_info &benchmark_t, int &tests_performed, int &tests_passed); +#line 1287 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkNoncentralT(benchmark_info &benchmark_noncentral_t, int &tests_performed, int &tests_passed); +#line 1353 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkNormal(benchmark_info &benchmark_normal, int &tests_performed, int &tests_passed); +#line 1420 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +bool CalculateBenchmarkLognormal(benchmark_info &benchmark_lognormal, int &tests_performed, int &tests_passed); +#line 1487 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" +void CalculateBenchmarks(string package_name); + +#endif diff --git a/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh b/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh new file mode 100644 index 0000000..0d6a6e8 --- /dev/null +++ b/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh @@ -0,0 +1,11 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_BFB129A2D4624852 +#define MQL_AUTO_FORWARDS_INCLUDED_BFB129A2D4624852 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5 + +#line 80 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5" +int GetCorrectDigits(const double delta); +#line 101 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5" +void TestPrecision(const string comment, const double pdf, const double cdf, const double pdf_calculated, const double cdf_calculated); + +#endif diff --git a/.mql-auto-forwards/TradingPanel.c4d984b7.auto.mqh b/.mql-auto-forwards/TradingPanel.c4d984b7.auto.mqh new file mode 100644 index 0000000..cd5c71e --- /dev/null +++ b/.mql-auto-forwards/TradingPanel.c4d984b7.auto.mqh @@ -0,0 +1,13 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_C4D984B7A8F9E5BD +#define MQL_AUTO_FORWARDS_INCLUDED_C4D984B7A8F9E5BD +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/TradingPanel.mq5 + +#line 219 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/TradingPanel.mq5" +bool IsTradingTime(); +#line 256 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/TradingPanel.mq5" +void HandleTradingTimeTransition(); +#line 292 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/TradingPanel.mq5" +void DisplayEAValues(); + +#endif diff --git a/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh b/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh new file mode 100644 index 0000000..6264a23 --- /dev/null +++ b/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh @@ -0,0 +1,13 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_F6A6A516F36ED9AC +#define MQL_AUTO_FORWARDS_INCLUDED_F6A6A516F36ED9AC +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5 + +#line 219 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" +bool IsTradingTime(); +#line 256 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" +void HandleTradingTimeTransition(); +#line 292 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" +void DisplayEAValues(); + +#endif diff --git a/.mql-auto-forwards/Wavelet.fe5807cd.auto.mqh b/.mql-auto-forwards/Wavelet.fe5807cd.auto.mqh new file mode 100644 index 0000000..ff9e469 --- /dev/null +++ b/.mql-auto-forwards/Wavelet.fe5807cd.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_FE5807CDA84A867B +#define MQL_AUTO_FORWARDS_INCLUDED_FE5807CDA84A867B +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5 + +#line 294 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" +double Weirstrass(double x, double a, double b); +#line 311 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" +void PrepareModelData(double &price_data[], const int datacount); +#line 326 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" +void PreparePriceData(const string symbol, ENUM_TIMEFRAMES timeframe, double &price_data[], const int datacount); +#line 334 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" +void PrepareMomentumData(double &price_data[], double &momentum_data[], const int momentum_period); + +#endif diff --git a/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh b/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh new file mode 100644 index 0000000..1c364a6 --- /dev/null +++ b/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh @@ -0,0 +1,15 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_FFD23185C8FA7332 +#define MQL_AUTO_FORWARDS_INCLUDED_FFD23185C8FA7332 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5 + +#line 288 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" +float Weirstrass(float x, float a, float b); +#line 305 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" +void PrepareModelData(float &price_data[], const int datacount); +#line 320 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" +void PreparePriceData(const string symbol, ENUM_TIMEFRAMES timeframe, float &price_data[], const int datacount); +#line 336 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" +void PrepareMomentumData(float &price_data[], float &momentum_data[], const int momentum_period); + +#endif diff --git a/.mql-auto-forwards/eATR.66c47364.auto.mqh b/.mql-auto-forwards/eATR.66c47364.auto.mqh new file mode 100644 index 0000000..5deeff4 --- /dev/null +++ b/.mql-auto-forwards/eATR.66c47364.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_66C47364059C2765 +#define MQL_AUTO_FORWARDS_INCLUDED_66C47364059C2765 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/MyProject/eATR.mq5 + + +#endif diff --git a/.mql-auto-forwards/eSuperTrend.c83c4339.auto.mqh b/.mql-auto-forwards/eSuperTrend.c83c4339.auto.mqh new file mode 100644 index 0000000..0666c21 --- /dev/null +++ b/.mql-auto-forwards/eSuperTrend.c83c4339.auto.mqh @@ -0,0 +1,7 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_C83C4339A8613F40 +#define MQL_AUTO_FORWARDS_INCLUDED_C83C4339A8613F40 +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrend.mq5 + + +#endif diff --git a/.mql-auto-forwards/eSuperTrendWithOffset.1fa3998c.auto.mqh b/.mql-auto-forwards/eSuperTrendWithOffset.1fa3998c.auto.mqh new file mode 100644 index 0000000..2d070f1 --- /dev/null +++ b/.mql-auto-forwards/eSuperTrendWithOffset.1fa3998c.auto.mqh @@ -0,0 +1,9 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_1FA3998C331B62BF +#define MQL_AUTO_FORWARDS_INCLUDED_1FA3998C331B62BF +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset.mq5 + +#line 89 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset.mq5" +double PipPoint(string Currency); + +#endif diff --git a/.mql-auto-forwards/eSuperTrendWithOffset2.ccd19995.auto.mqh b/.mql-auto-forwards/eSuperTrendWithOffset2.ccd19995.auto.mqh new file mode 100644 index 0000000..b6ea5a1 --- /dev/null +++ b/.mql-auto-forwards/eSuperTrendWithOffset2.ccd19995.auto.mqh @@ -0,0 +1,9 @@ +#ifndef MQL_AUTO_FORWARDS_INCLUDED_CCD19995C6662ABE +#define MQL_AUTO_FORWARDS_INCLUDED_CCD19995C6662ABE +// Auto-generated by MQL Clangd. Do not edit — regenerated by "MQL: Create Configuration". +// Forward declarations for top-level functions in c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset2.mq5 + +#line 101 "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset2.mq5" +double PipPoint(string Currency); + +#endif diff --git a/.vscode/settings.json b/.vscode/settings.json index 4deb14e..de50299 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -23,5 +23,25 @@ "editor.tabSize": 3, "C_Cpp.default.forcedInclude": [ "c:\\Users\\new\\.vscode\\extensions\\l-i-v.mql-tools-2.2.0\\data\\mql5_en.mqh" + ], + "clangd.fallbackFlags": [ + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include" ] } \ No newline at end of file diff --git a/compile_commands.json b/compile_commands.json index 8e931c6..cc5fe99 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -7,399 +7,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver5.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver5.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver4.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver4.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver3.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver3.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver2.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver2.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Comment_Test.b3a29339.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -427,7 +36,182 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/TradingPanel.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/MyProject/HIT-EA_refactor_ver6.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Experts/Debug_Entry_Panel.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatPrecision.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStatBenchmark.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStat.c52e7569.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Stat/TestStat.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStack.5271212b.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -455,7 +239,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -483,7 +268,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -511,7 +297,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -539,7 +326,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestQueue.9fbbf7ab.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -567,7 +355,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -595,7 +384,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestHashSet.93ceb4a9.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -623,7 +413,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestHashMap.be102765.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -651,7 +442,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestArrayList.76e6c7c5.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -679,7 +471,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -707,7 +500,95 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_171108.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_153540.fc92d045.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.cache/SLTP_Panel_original_20260503_153540.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver3_restore.9e59dbee.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/python_for_ea/work/HIT-EA_refactor_ver3_restore.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -735,7 +616,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestClasses.7e6865b2.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -763,7 +645,269 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.c4d984b7.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/TradingPanel.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/TradingPanel.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel.44ea2bbd.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/SLTP_Panel.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.0606879f.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver6.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver5.2b1e831b.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver5.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver4.ca569fc9.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver4.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver3.9d52c52b.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver3.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver2.4914830b.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor_ver2.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor.9e7cffce.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA_refactor.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA.0d006635.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Files/temp/HIT-EA.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -791,119 +935,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrend.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrend.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Remnant 3D/Remnant 3D.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Remnant 3D/Remnant 3D.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_Custom.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_Custom.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_CustomWithOffset.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_CustomWithOffset.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SuperTrend_Custom_20251203.a2fa19f2.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -931,7 +964,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SuperTrend_CustomWithOffset.0091820d.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -947,9 +981,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset.mq5" + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_CustomWithOffset.mq5" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset.mq5" + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_CustomWithOffset.mq5" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -959,7 +993,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SuperTrend_Custom.913f84d0.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -975,9 +1010,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset2.mq5" + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_Custom.mq5" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset2.mq5" + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/SuperTrend_Custom.mq5" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -987,119 +1022,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ArrayDouble/ArrayDoubleSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ArrayDouble/ArrayDoubleSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/CanvasSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/CanvasSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/eATR.66c47364.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1127,7 +1051,124 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/eSuperTrendWithOffset2.ccd19995.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset2.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset2.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/eSuperTrendWithOffset.1fa3998c.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrendWithOffset.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/eSuperTrend.c83c4339.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrend.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Indicators/eSuperTrend.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Remnant 3D.bb733e31.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Remnant 3D/Remnant 3D.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Remnant 3D/Remnant 3D.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PositionInfoSample.73cba22b.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1155,7 +1196,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/OrderInfoSample.c003532a.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1171,9 +1213,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSample.mq5" + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSample.mq5" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSample.mq5" + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSample.mq5" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1183,231 +1225,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ObjChartSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ObjChartSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/PieChartSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/PieChartSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/LineChartSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/LineChartSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/HistogramChartSample.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/HistogramChartSample.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Seascape.2803837b.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1435,63 +1254,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-fms-extensions", - "-fms-compatibility", - "-ferror-limit=0", - "-Wno-invalid-token-paste", - "-Wno-unused-value", - "-Wno-unknown-pragmas", - "-Wno-writable-strings", - "-Xclang", - "-Wno-invalid-pp-directive", - "-Wno-unknown-directives", - "-Wno-language-extension-token", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", - "-D__MQL5_BUILD__", - "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" - ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" - }, - { - "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", - "arguments": [ - "clang++", - "-xc++", - "-std=c++17", - "-D__MQL__", - "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/BitonicSort.3910007f.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1519,7 +1283,37 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/MatrixMult.2e7990e3.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/MatrixMult.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/FFT.161e9462.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1543,20 +1337,12 @@ "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", "arguments": [ "clang++", - "-xc++-header", + "-xc++", "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1572,29 +1358,339 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh" + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh" + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Float/Wavelet.mq5" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", "arguments": [ "clang++", - "-xc++-header", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SphereSample.5acb5dc3.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/SphereSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.fe5807cd.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/Wavelet.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/MatrixMult.8863193a.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/MatrixMult.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ObjChartSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ObjChartSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/PieChartSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/PieChartSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/FFT.2b43903c.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/FFT.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/LineChartSample.59d6116a.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/LineChartSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/LineChartSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HistogramChartSample.91c16b25.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/HistogramChartSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/Charts/HistogramChartSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/CanvasSample.84ff22bb.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/CanvasSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/Canvas/CanvasSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/BitonicSort.9ca2f411.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OpenCL/Double/BitonicSort.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", + "-std=c++17", + "-D__MQL__", + "-D__MQL5__", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/ArrayDoubleSample.19fa7ef3.auto.mqh", + "-fms-extensions", + "-fms-compatibility", + "-ferror-limit=0", + "-Wno-invalid-token-paste", + "-Wno-unused-value", + "-Wno-unknown-pragmas", + "-Wno-writable-strings", + "-Xclang", + "-Wno-invalid-pp-directive", + "-Wno-unknown-directives", + "-Wno-language-extension-token", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", + "-D__MQL5_BUILD__", + "-c", + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ArrayDouble/ArrayDoubleSample.mq5" + ], + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ArrayDouble/ArrayDoubleSample.mq5" + }, + { + "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", + "arguments": [ + "clang++", + "-xc++", "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1610,9 +1706,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh" + "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSample.mq5" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh" + "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSample.mq5" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1622,9 +1718,10 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1640,9 +1737,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1652,10 +1749,11 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Debug_Entry_Panel.179d8076.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1671,9 +1769,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1683,18 +1781,33 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1710,9 +1823,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1722,19 +1835,34 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1750,9 +1878,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1762,20 +1890,35 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1791,9 +1934,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1803,21 +1946,36 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1833,9 +1991,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1845,22 +2003,37 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1876,9 +2049,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1888,23 +2061,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1920,9 +2085,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1932,24 +2097,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -1965,9 +2122,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -1977,25 +2134,17 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2011,9 +2160,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2023,26 +2172,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2058,9 +2199,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2070,27 +2211,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2106,9 +2239,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2118,28 +2251,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2155,9 +2280,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2167,29 +2292,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2205,9 +2322,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2217,30 +2334,22 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2256,9 +2365,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2268,31 +2377,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2308,9 +2409,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2320,32 +2421,24 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2361,9 +2454,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2373,33 +2466,25 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2415,9 +2500,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2427,34 +2512,26 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2470,9 +2547,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2482,32 +2559,27 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2523,9 +2595,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2535,33 +2607,28 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2577,9 +2644,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2589,34 +2656,29 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2632,9 +2694,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2644,35 +2706,30 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2688,9 +2745,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2700,36 +2757,31 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2745,9 +2797,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2757,27 +2809,32 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2793,9 +2850,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2805,28 +2862,33 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2842,9 +2904,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2854,29 +2916,34 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2892,9 +2959,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2904,30 +2971,35 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2943,9 +3015,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2955,7 +3027,36 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TradingPanel.f6a6a516.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -2971,9 +3072,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/TradingPanelPanel.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/TradingPanelPanel.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -2983,10 +3084,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3002,9 +3108,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3014,18 +3120,35 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3041,9 +3164,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3053,14 +3176,36 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3076,9 +3221,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3088,17 +3233,37 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3114,9 +3279,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3126,12 +3291,38 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3147,9 +3338,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3159,13 +3350,39 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3181,9 +3398,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITPythonSignalGateway.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITPythonSignalGateway.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3193,28 +3410,40 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralT.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HIT-EA_refactor_ver6.a28fb657.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITPythonSignalGateway.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3230,9 +3459,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/HITTradeManager.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/HITTradeManager.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3242,15 +3471,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3266,9 +3488,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3278,19 +3500,11 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3306,9 +3520,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3318,17 +3532,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3344,9 +3560,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3356,18 +3572,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3383,9 +3596,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3395,19 +3608,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3423,9 +3635,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3435,20 +3647,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3464,9 +3669,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3476,21 +3681,14 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3506,9 +3704,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3518,22 +3716,29 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralT.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3549,9 +3754,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3561,26 +3766,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3596,9 +3791,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3608,24 +3803,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3641,9 +3832,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3653,25 +3844,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3687,9 +3874,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3699,26 +3886,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3734,9 +3918,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3746,27 +3930,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3782,9 +3959,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3794,28 +3971,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Chisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChisquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3831,9 +4001,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralT.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralT.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3843,20 +4013,22 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3872,9 +4044,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3884,22 +4056,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3915,9 +4088,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3927,14 +4100,27 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatBenchmark.a4ce858f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3950,9 +4136,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3962,15 +4148,25 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -3986,9 +4182,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -3998,35 +4194,26 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/TradingPanelSymbolUtils.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/TradingPanelTradingManagers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4042,9 +4229,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/TradingPanelPanel.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/TradingPanelPanel.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4054,14 +4241,27 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4077,9 +4277,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4089,34 +4289,28 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4132,9 +4326,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4144,35 +4338,29 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStatPrecision.bfb129a2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Normal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Weibull.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Uniform.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Logistic.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Cauchy.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Exponential.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Lognormal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Gamma.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Poisson.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/ChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralChiSquare.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Beta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Binomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/F.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Geometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/T.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Hypergeometric.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NegativeBinomial.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralBeta.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralF.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4188,9 +4376,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralT.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/NoncentralT.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4200,36 +4388,8 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStack.5271212b.auto.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4245,9 +4405,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4257,37 +4417,11 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4303,9 +4437,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4315,38 +4449,14 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4362,9 +4472,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITPythonSignalGateway.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITPythonSignalGateway.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4374,39 +4484,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/HistoryOrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/DealInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/Trade.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/SLTPManager.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Label.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Panel/SLTPManagerPanel.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITRuntimeController.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITEntrySignal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Common/HITExternalProcess.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Signals/HITPythonSignalGateway.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4422,9 +4508,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/HITTradeManager.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/MyLib/Trading/HITTradeManager.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4434,7 +4520,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4450,9 +4542,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4462,10 +4554,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4481,9 +4579,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4493,13 +4591,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4515,9 +4615,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4527,14 +4627,27 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4550,9 +4663,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4562,12 +4675,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4583,9 +4702,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4595,15 +4714,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4619,9 +4742,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4631,14 +4754,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestStack.5271212b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4654,9 +4781,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4666,26 +4793,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestRedBlackTree.285a3d31.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4701,9 +4822,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4713,17 +4834,26 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4739,9 +4869,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4751,18 +4881,28 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4778,9 +4918,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4790,17 +4930,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4816,9 +4962,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4828,19 +4974,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4856,9 +5006,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4868,25 +5018,24 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4902,9 +5051,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4914,27 +5063,25 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4950,9 +5097,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -4962,22 +5109,26 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedSet.667f905f.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -4993,9 +5144,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5005,22 +5156,29 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5036,9 +5194,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedSet.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedSet.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5048,23 +5206,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5080,9 +5234,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5092,24 +5246,25 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5125,9 +5280,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5137,25 +5292,30 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestSortedMap.f0cde49c.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedSet.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5171,9 +5331,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedMap.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedMap.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5183,28 +5343,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestQueue.9fbbf7ab.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5220,9 +5367,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedSet.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Queue.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedSet.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Queue.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5232,18 +5379,11 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestLinkedList.f0eafcb0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5259,9 +5399,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5271,24 +5411,10 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5304,9 +5430,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5316,29 +5442,17 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/Introsort.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/ArrayList.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/HashFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/DefaultEqualityComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/PrimeGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashSet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/HashMap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ISet.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Stack.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/RedBlackTree.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedSet.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5354,9 +5468,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedMap.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/SortedMap.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5366,14 +5480,14 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/CompareFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IComparer.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/ArrayFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5389,9 +5503,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Queue.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Queue.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5401,10 +5515,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/ICollection.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Interfaces/IEqualityComparable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/Internal/EqualFunction.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5420,9 +5539,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Generic/LinkedList.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5432,9 +5551,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5450,9 +5576,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5462,16 +5588,17 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5487,9 +5614,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5499,13 +5626,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5521,9 +5653,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5533,14 +5665,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5556,9 +5693,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5568,15 +5705,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5592,9 +5734,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5604,16 +5746,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5629,9 +5776,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/ruleparser.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/ruleparser.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5641,17 +5788,22 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/ruleparser.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5667,9 +5819,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/dictionary.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/dictionary.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5679,18 +5831,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/ruleparser.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/dictionary.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5706,9 +5863,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/genericfuzzysystem.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/genericfuzzysystem.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5718,19 +5875,24 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/ruleparser.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/dictionary.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/genericfuzzysystem.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5746,9 +5908,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/mamdanifuzzysystem.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/mamdanifuzzysystem.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5758,20 +5920,25 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestFuzzy.5fe06143.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/membershipfunction.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/inferencemethod.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/helper.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyterm.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyvariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/fuzzyrule.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenovariable.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/ruleparser.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/dictionary.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/genericfuzzysystem.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/mamdanifuzzysystem.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5787,9 +5954,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/RuleParser.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenofuzzysystem.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/RuleParser.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/sugenofuzzysystem.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5799,21 +5966,28 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/RuleParser.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5829,9 +6003,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Dictionary.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Dictionary.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5841,22 +6015,29 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/RuleParser.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Dictionary.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5872,9 +6053,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/GenericFuzzySystem.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/GenericFuzzySystem.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5884,23 +6065,30 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/RuleParser.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Dictionary.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/GenericFuzzySystem.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5916,9 +6104,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MamdaniFuzzySystem.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MamdaniFuzzySystem.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5928,24 +6116,31 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/List.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MembershipFunction.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/InferenceMethod.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Helper.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyTerm.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/FuzzyRule.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoVariable.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/RuleParser.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/Dictionary.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/GenericFuzzySystem.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/MamdaniFuzzySystem.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SLTP_Panel_original_20260503_171108.6d58833b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Defines.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Wnd.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndContainer.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Panel.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsBmpControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/BmpButton.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Scrolls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/WndClient.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Edit.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Dialog.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Button.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayLong.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ListView.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5961,9 +6156,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoFuzzySystem.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Fuzzy/SugenoFuzzySystem.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/ComboBox.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -5973,9 +6168,10 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -5991,9 +6187,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6003,10 +6199,11 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6022,9 +6219,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6034,11 +6231,12 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6054,9 +6252,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6066,12 +6264,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6087,9 +6286,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6099,13 +6298,14 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6121,9 +6321,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6133,14 +6333,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6156,9 +6357,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6168,15 +6369,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6192,9 +6394,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6204,16 +6406,17 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6229,9 +6432,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6241,17 +6444,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6267,9 +6471,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6279,18 +6483,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6306,9 +6511,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6318,19 +6523,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6346,9 +6552,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6358,20 +6564,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6387,9 +6594,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6399,21 +6606,22 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6429,9 +6637,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6441,22 +6649,23 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6472,9 +6681,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6484,23 +6693,24 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6516,9 +6726,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6528,24 +6738,25 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6561,9 +6772,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6573,25 +6784,26 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6607,9 +6819,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6619,26 +6831,27 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6654,9 +6867,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6666,27 +6879,28 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestInterfaces.1f0599a0.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6702,9 +6916,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestInterfaces.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestInterfaces.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestInterfaces.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestInterfaces.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6714,27 +6928,28 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/TestClasses.7e6865b2.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/arrayresize.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/matrix.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/bitconvert.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/ap.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibinternal.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglibmisc.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/linalg.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/optimization.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/specialfunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/statistics.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/solvers.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/dataanalysis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/diffequations.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/delegatefunctions.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/fasttransforms.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/integration.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/interpolation.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Alglib/alglib.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6750,9 +6965,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestClasses.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestClasses.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestClasses.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/UnitTests/Alglib/TestClasses.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6762,9 +6977,10 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6780,9 +6996,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/SymbolInfo.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/SymbolInfo.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/SymbolInfo.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/SymbolInfo.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6792,12 +7008,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/SymbolInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SymbolInfoSample.b7ae9723.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/SymbolInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6813,9 +7030,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/SymbolInfo/SymbolInfoSampleInit.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/SymbolInfo/SymbolInfoSampleInit.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/SymbolInfo/SymbolInfoSampleInit.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/SymbolInfo/SymbolInfoSampleInit.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6825,12 +7042,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PositionInfoSample.73cba22b.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6846,9 +7064,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/PositionInfo/PositionInfoSampleInit.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/PositionInfo/PositionInfoSampleInit.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6858,13 +7076,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/OrderInfoSample.c003532a.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6880,9 +7098,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSampleInit.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSampleInit.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6892,13 +7110,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Graphic.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6914,9 +7140,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/Sphere.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/OpenCL/OpenCL.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/Sphere.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/OpenCL/OpenCL.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6926,15 +7152,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6950,9 +7174,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6962,12 +7186,14 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/OrderInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -6983,9 +7209,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSampleInit.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/OrderInfo/OrderInfoSampleInit.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -6995,12 +7221,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/PositionInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7016,9 +7246,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/PositionInfo/PositionInfoSampleInit.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/PositionInfo/PositionInfoSampleInit.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7028,9 +7258,17 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7046,9 +7284,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/AccountInfo.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/AccountInfo.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7058,12 +7296,18 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/AccountInfo.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7079,9 +7323,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSampleInit.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSampleInit.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7091,14 +7335,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7114,9 +7363,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7126,15 +7375,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/Wavelet.ffd23185.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7150,9 +7404,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectPanel.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Graphic.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectPanel.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Graphic.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7162,16 +7416,14 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectPanel.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/SphereSample.5acb5dc3.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7187,9 +7439,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ChartSampleInit.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/Sphere.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ChartSampleInit.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectSphere/Sphere.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7199,15 +7451,15 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7223,9 +7475,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7235,18 +7487,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7262,9 +7512,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectPanel.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectPanel.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7274,19 +7524,17 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/ObjChartSample.341e64fa.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Charts/Chart.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectPanel.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7302,9 +7550,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/PieChart.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ChartSampleInit.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/PieChart.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/ObjectChart/ChartSampleInit.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7314,20 +7562,16 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7343,9 +7587,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/LineChart.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/LineChart.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7355,20 +7599,19 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7384,9 +7627,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/HistogramChart.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/HistogramChart.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7396,16 +7639,20 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/PieChartSample.354d95dc.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7421,9 +7668,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/PieChart.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/PieChart.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7433,17 +7680,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/LineChartSample.59d6116a.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7459,9 +7710,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/LineChart.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/LineChart.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7471,18 +7722,21 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/HistogramChartSample.91c16b25.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayUInt.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayDouble.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayString.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/ChartCanvas.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7498,9 +7752,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/HistogramChart.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Charts/HistogramChart.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7510,19 +7764,10 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7538,9 +7783,9 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Graphic.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/AccountInfo.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Graphic.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/AccountInfo.mqh" }, { "directory": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5", @@ -7550,20 +7795,13 @@ "-std=c++17", "-D__MQL__", "-D__MQL5__", - "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.42-universal/files/mql_clangd_compat.h", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Math/Stat/Math.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/Array.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Arrays/ArrayObj.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/File.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Files/FileBin.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Controls/Rect.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Canvas/Canvas.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Curve.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Axis.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/ColorGenerator.mqh", - "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Graphics/Graphic.mqh", + "-includec:/Users/new/.cursor/extensions/ngsoftware.mql-clangd-1.1.55-universal/files/mql_clangd_compat.h", + "-includec:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/.mql-auto-forwards/AccountInfoSample.6f166a75.auto.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/StdLibErr.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Object.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/Trade/AccountInfo.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObject.mqh", + "-includeC:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/ChartObjects/ChartObjectsTxtControls.mqh", "-fms-extensions", "-fms-compatibility", "-ferror-limit=0", @@ -7579,8 +7817,8 @@ "-Ic:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include", "-D__MQL5_BUILD__", "-c", - "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/OpenCL/OpenCL.mqh" + "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSampleInit.mqh" ], - "file": "c:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Include/OpenCL/OpenCL.mqh" + "file": "C:/Users/new/AppData/Roaming/MetaQuotes/Terminal/5BDB0B60344C088C2FA5CA35699BAAFD/MQL5/Scripts/Examples/AccountInfo/AccountInfoSampleInit.mqh" } ] \ No newline at end of file