This commit is contained in:
Bell
2026-05-24 22:24:36 +07:00
parent e173949468
commit 3a69f4c09a
16 changed files with 1872 additions and 120 deletions
+8 -2
View File
@@ -3,8 +3,8 @@
//| BOS = Continue | CHoCH = Reversal |
//+------------------------------------------------------------------+
#property copyright "ICT 2026"
#property version "1.112"
#property description "Daily Bias + Intraday H1 + iTF FVG + IsAllowTrade"
#property version "1.126"
#property description "ICT2026 MSS limit entry + SL swing CHoCH + TP intraday"
#include <ICT2026/Config.mqh>
#include <ICT2026/DailyBias.mqh>
@@ -47,6 +47,7 @@ void OnDeinit(const int reason)
IctPanel_Clear();
IctDraw_Clear();
IctFvgDraw_DeleteAll();
IctMssDraw_DeleteAll();
ChartRedraw();
}
@@ -80,6 +81,7 @@ void OnChartEvent(const int id, const long &lparam, const double &dparam, const
IctPanel_Render(_Symbol);
IctDraw_Render(_Symbol);
IctFvgDraw_Render(_Symbol);
IctMssDraw_Render(_Symbol);
}
}
@@ -92,4 +94,8 @@ bool ICT2026_IsAllowTrade() { return g_ictIntraday.isAllowTrade; }
int ICT2026_GetFvgAvailableCount() { return g_ictLowTf.availableCount; }
ENUM_ICT_MSS_PHASE ICT2026_GetMssPhase() { return g_ictLowTf.mss.phase; }
string ICT2026_GetMssReason() { return g_ictLowTf.mss.displayReason; }
//+------------------------------------------------------------------+