Commit Graph

10 Commits

Author SHA1 Message Date
a766263ec5 v1.16: Add weekend protection to Confluence EA 2026-03-30 08:36:25 -04:00
53171c3c36 v1.15: Add trailing stop implementation to Confluence EA 2026-03-30 08:31:28 -04:00
028a41b9b5 Fix: remove abovePivot/belowPivot debug references 2026-03-29 23:51:58 -04:00
c53dff6d9f Fix weekend gap risk and short signal detection
Grid EA (v3.1):
- Add weekend protection: close positions Friday before market close
- New settings: InpCloseBeforeWeekend, InpWeekendCloseHour, InpCancelPendingBeforeWeekend
- Prevents gap risk when market reopens Sunday/Monday
- FIX: Restore missing #include statements

Confluence EA (v1.14):
- Fix short signal detection by removing restrictive 'belowPivot' check
- Mirror BUY and SELL logic for symmetry
- Relax harmonic pattern tolerances (0.3-1.0 vs 0.5-0.8)
- Short signals now match buy signal generation

Add verify-short-signals.py to test short signal generation
2026-03-29 23:46:01 -04:00
16b69d251c Fix warningPrinted scope - restructure CheckDailyDrawdown function 2026-03-29 22:27:13 -04:00
04756ef2bd Fix warningPrinted scope error - move declaration to function level 2026-03-29 22:23:35 -04:00
2f8c24a5d2 MultiSignal Confluence EA v1.13 - Add dynamic lot sizing
New Features:
- InpUseRiskPercent: Enable risk-based lot sizing
- InpRiskPercent: Risk % per trade (default 1.0%)
- CalculateLotSize(): Dynamic lot calculation based on:
  * Account balance
  * Risk percentage
  * Stop loss distance
  * Symbol tick value/size

Lot size formula: Risk$ / (SL_Points * TickValue/TickSize)

Automatically adjusts lot size as account grows/shrinks.
Falls back to fixed InpLotSize if UseRiskPercent=false.
2026-03-25 22:43:25 -04:00
e2d42b3015 Add complete volatility filters v1.12 (Anti-Chop)
- ATR filter: Blocks trades when volatility < 0.5% (narrow bands)
- ADX filter: Blocks trades when trend strength < 20
- CheckVolatilityFilter() called before every trade entry
- Prevents over-trading in choppy/consolidating markets
- Both filters ON by default, configurable via inputs
- Version bumped to 1.12
2026-03-22 10:35:22 -04:00
86fa4b2bcb Add volatility filters v1.12 (Anti-Chop)
- ATR filter: Blocks trades when volatility < 0.5% (narrow bands)
- ADX filter: Blocks trades when trend strength < 20
- Prevents over-trading in choppy/consolidating markets
- Both filters ON by default, can be disabled in inputs
- Version bumped to 1.12
2026-03-22 10:18:34 -04:00
74308b38e7 Initial commit: MQL Trading Bots
- MultiSignal Confluence EA v1.11 (stop loss bug fixed)
- Harmonic Pattern Finder v2 (optimized)
- Candlestick Pattern EA (fixed)
- Pivot Fade EA v4 (fixed)
- Bot series (10001, 10002, EnhancedEA)

Performance: ~19% return in 2 months on 00k account
2026-03-21 18:39:48 -04:00