Files
Bell-PriceActionWithEma-EA/Experts/EA_ICT_CL/Config.mqh
T

34 lines
1.2 KiB
Plaintext
Raw Normal View History

2026-03-10 13:47:42 +07:00
#ifndef EA_ICT_CL__CONFIG_MQH
2026-03-10 20:39:33 +07:00
#define EA_ICT_CL__CONFIG_MQH
2026-03-10 13:47:42 +07:00
2026-03-10 20:39:33 +07:00
input ENUM_TIMEFRAMES InpMiddleTF = PERIOD_H1;
input ENUM_TIMEFRAMES InpTriggerTF = PERIOD_M5;
2026-03-10 13:47:42 +07:00
2026-03-10 20:39:33 +07:00
input double InpRiskPercent = 1.0;
2026-03-10 23:10:00 +07:00
input double InpRiskReward = 2.2;
2026-03-10 20:39:33 +07:00
input double InpMaxDailyLossPct = 3.0;
2026-03-10 13:47:42 +07:00
2026-03-10 22:21:59 +07:00
input int InpLondonStartHour = 7;
2026-03-10 20:39:33 +07:00
input int InpLondonEndHour = 17;
input int InpNYStartHour = 13;
input int InpNYEndHour = 22;
2026-03-10 13:47:42 +07:00
2026-03-10 22:21:59 +07:00
input int InpMiddleTfSwingRange = 2;
input int InpTriggerTfSwingRange = 2;
2026-03-10 20:39:33 +07:00
input int InpSwingLookback = 50;
input int InpTriggerSwingLookback = 30;
2026-03-10 13:47:42 +07:00
2026-03-10 20:39:33 +07:00
input int InpFVGMaxAliveMin = 4320;
input int InpFVGScanBars = 50;
input double InpFVGMinBodyPct = 60.0;
2026-03-10 23:10:00 +07:00
input double InpFVGTouchPct = 35.0; // giá phải vào sâu bao nhiêu % FVG range mới tính touched
2026-03-10 20:39:33 +07:00
input int InpMSSMinDepthPts = 30;
2026-03-10 13:47:42 +07:00
2026-03-10 20:39:33 +07:00
input long InpMagicNumber = 20250308;
input int InpSlippage = 5;
2026-03-10 13:47:42 +07:00
2026-03-10 20:39:33 +07:00
input bool InpDebugLog = true;
input bool InpDebugDraw = true;
2026-03-10 13:47:42 +07:00
2026-03-10 20:39:33 +07:00
#endif