Radar Signal EA

RadarSignal EA — Multi-Timeframe S/R Breakout & Range Engine with Grok AI Co-Pilot

RadarSignal EA is a fully automated trading system built around a multi-timeframe Support/Resistance zone engine. Instead of firing market orders on a simple crossover, it maps out real S/R zones across three chained timeframes (e.g. M15 → M30 → H1, or higher, depending on your chart period), waits for price to approach those zones at the right distance — not too early, not too late — and then chooses between a Limit or a Stop order depending on whether the market is ranging or breaking out. Position sizing, breakeven, ATR trailing, and a whipsaw/re-test defense system are all handled automatically, and an optional Grok (xAI) module can be layered on top as a second opinion before any trade is confirmed.

This EA was originally converted from the RadarSignal indicator logic and has been hardened with execution-safety layers (market-closed detection, stop-level checks, filling-mode auto-detection, order-expiry cleanup) to reduce broker-side trade errors.

Key Features

  • 3-timeframe weighted bias score — combines ADX, RSI, CCI, OsMA and Williams %R across the current chart timeframe plus the next two higher timeframes into a single weighted directional score.

  • Automatic S/R zone mapping — detects fractal swing clusters, tolerant-merges them using an ATR-scaled tolerance, and keeps only the most relevant zones above/below price.

  • Distance-aware order placement — a zone must be neither too close nor too far (measured in ATR) before the EA considers it tradeable, avoiding both premature entries and chasing price.

  • Adaptive order type — places a Limit order at the zone in range/weak conditions, or a Stop order beyond a confirmed breakout in strong-momentum conditions, with an optional backup retest Limit order.

  • Signal-strength-scaled position sizing — lot size scales with signal strength (Weak / Moderate / Strong) and risk percentage, based on balance, equity, or the lesser of the two.

  • Whipsaw / re-test protection — if price re-enters the entry zone multiple times, the EA automatically de-risks the position with a partial close and tighter SL/TP.

  • Breakeven + ATR trailing stop — moves to breakeven after a configurable R-multiple of profit, then trails using ATR with a minimum step to avoid micro-modifications.

  • Optional Grok AI (xAI) co-pilot — six selectable analysis "personalities" (pure price action, ICT/SMC, fundamental+technical hybrid, scalping, senior combined ICT, quant/risk) can be queried before a trade is confirmed, with an optional hard filter mode.

  • On-chart dashboard — live account balance/equity/floating P&L, current bias score, signal direction and strength, active S/R zone counts, AI status, and open-position summary.

  • Mobile push notifications and detailed Experts-log diagnostics for remote monitoring.

  • Execution-safety layer — auto-detects the broker's best filling mode and expiration type, checks spread/stop-level/market-session before sending any order, and cancels stale pending orders after N bars.

Strengths

  1. Structure-based, not indicator-crossover-based. Entries are anchored to actual price structure (S/R zones), which tends to produce more logical stop-loss placement than pure oscillator signals.

  2. Built-in trade defense. The re-test/whipsaw de-risking logic is a genuinely useful feature most retail EAs lack — it reacts to price chopping back into a zone rather than letting a losing idea run at full size.

  3. Configurable aggressiveness. Score thresholds, lot multipliers per strength category, and ATR distance filters let a user tune the EA from conservative to more active without touching code.

  4. Transparent decision-making. The on-chart dashboard and verbose logging show exactly why the EA did or didn't trade on any given bar (spread too wide, session closed, zone too far, etc.), which shortens debugging time considerably.

  5. AI layer is optional and modular. Traders who don't want to depend on an external API can run the EA purely on its own multi-timeframe logic; the Grok integration is opt-in.

  6. Broker-compatibility handling. Filling-mode and expiration-mode are detected automatically rather than hard-coded, reducing "Invalid Fill" / "Invalid Expiration" rejection errors across different brokers.

Considerations / Limitations

  1. Optional AI module requires a third-party API key and internet dependency. InpUseAIAnalysis relies on an external xAI/Grok endpoint — this adds latency, a recurring API cost, and an external point of failure. If the AI filter (InpAIFilterTrade) is enabled and the API call fails or times out, that trade opportunity may be skipped entirely.

  2. Zone-based entries mean the EA doesn't always trade every bar. With a strict score threshold and ATR distance window, the EA can go through quiet periods with no valid setup — this is by design, but it is not a "high-frequency" system.

  3. Backtest quality depends on broker tick/spread data. Because entries are highly sensitive to spread (InpMaxSpreadPips) and ATR-based zone distances, results will vary noticeably between brokers with different average spreads and between real-tick vs. generated-tick backtests.

  4. Multi-symbol/multi-timeframe indicator load. The EA opens indicator handles on three timeframes simultaneously (ADX, RSI, CCI, OsMA, WPR, ATR); on very low-spec VPS setups with many charts running in parallel this adds some overhead.

  5. No built-in news filter. Trading-hours filtering (InpUseTimeFilter) is time-of-day only — there is no economic-calendar avoidance, so high-impact news spikes can still trigger breakout-style Stop entries.

  6. Like any automated strategy, past performance and backtests are not a guarantee of future results. Users should forward-test on a demo account and understand the risk settings before running the EA lives

Input Parameters Explained

General

Parameter

Description

InpMagic

Unique magic number used to identify and manage this EA's own orders/positions.

InpComment

Comment tag attached to every order sent by the EA.

InpMaxSlippagePips

Maximum allowed slippage/deviation (in pips) on market execution.

InpVerboseLogging

Prints detailed step-by-step decision logs to the Experts tab — useful for diagnostics.

Signal Engine (multi-timeframe bias score)

Parameter

Description

InpReverseSignal

Inverts the final Buy/Sell direction — useful for testing contrarian variants.

InpADXPeriod / InpADXTrendLevel

ADX period and the minimum ADX value considered "trending" (adds directional weight to the score only when trending).

InpRSIPeriod

RSI period; score is +1 if RSI > 50, else −1.

InpCCIPeriod

CCI period; score is +1 if CCI > 0, else −1.

InpWPRPeriod

Williams %R period; score is +1 if WPR > −50, else −1.

InpOsMAFast / InpOsMASlow / InpOsMASignal

MACD-OsMA settings; score is +1 if the OsMA histogram is positive, else −1.

InpScoreThreshold

Minimum absolute weighted score required before the EA considers a directional bias valid.

InpWeakThreshold / InpStrongThreshold

Score magnitude cut-offs that classify the signal as Weak/Moderate/Strong (used for lot sizing).

How the score works: each of the 5 indicators contributes ±1 per timeframe, are summed per timeframe, and the 3 timeframes are combined with weights 1 / 2 / 3 (current chart timeframe weighted least, the highest timeframe weighted most).

Filters & Execution Protection

Parameter

Description

InpMaxSpreadPips

Blocks new order placement above this spread (0 disables the filter).

InpUseTimeFilter / InpStartHour / InpEndHour

Restricts trading to a specific hour window (broker server time), with overnight wrap-around support.

AI Analysis (Grok xAI) — optional

Parameter

Description

InpUseAIAnalysis

Master switch for the Grok AI co-pilot.

InpGrokApiKey

Your personal xAI API key (obtained from console.x.ai).

InpGrokModel

Which Grok model to query (e.g. grok-2, grok-3, grok-4.5).

InpPromptStyle

Selects one of 6 analysis personas: Pure Price Action, Pure ICT/SMC, Fundamental+Technical Hybrid, Short-Term Scalping, Senior Combined ICT/SMC, Quant & Risk Evaluator, or Random (rotates per request).

InpGrokTimeoutMs

Timeout for the API request.

InpAIFilterTrade

When enabled, a trade is only sent if Grok's analysis confirms the EA's own signal.

Dashboard & Mobile Notifications

Parameter

Description

InpShowDashboard

Toggles the on-chart status panel.

InpSendMobileNotify

Sends MT5 mobile push notifications on key events.

ATR / Volatility

Parameter

Description

InpATRPeriod

ATR period used throughout the EA for zone tolerance, engagement distance, breakout confirmation, and trailing.

S/R Zone Detection (M15/M30/H1/H4-style multi-TF)

Parameter

Description

InpSRLookback

Number of bars scanned per timeframe to find fractal swing highs/lows.

InpZoneTolATR

Clustering tolerance for merging nearby swing points into one zone (as a multiple of ATR).

InpMaxZoneDistATR

Ignores zones farther than this many ATR units from current price.

InpMaxZonesPerSide

Maximum number of zones kept above and below price.

InpSRRecalcBars

Recomputes all zones every N bars of the chart timeframe.

Order Placement / Timing

Parameter

Description

InpMinEngageATR

Minimum distance (in ATR) to a zone before it is considered worth engaging.

InpMaxEngageATR

Beyond this ATR distance, a zone is treated as "too early" and skipped for now.

InpBreakoutConfirmATR

Distance (in ATR) past a zone required to classify it as a confirmed breakout (switches order type to Stop).

InpPendingExpiryBars

Cancels unfilled pending orders after this many bars.

InpUseBackupLimit

Places an additional retest Limit order behind a breakout Stop order.

Lot Sizing / Risk

Parameter

Description

InpRiskBase

Capital base used for risk %: Balance, Equity, or the lesser of Balance/Equity.

InpRiskPercent

Risk percentage of the chosen capital base per new order.

InpLotMultWeak / InpLotMultModerate / InpLotMultStrong

Lot-size multipliers applied according to signal strength category.

InpMaxLot / InpMinLot

Hard caps on calculated lot size.

Breakeven

Parameter

Description

InpEnableBreakeven

Enables automatic move-to-breakeven.

InpBEStartR

Profit (in R-multiples of initial risk) required to trigger the breakeven move.

InpBEBufferPips

Buffer added past entry price when moving SL to breakeven.

Trailing (safe zone)

Parameter

Description

InpEnableTrailing

Enables ATR-based trailing stop.

InpTrailStartR

Profit (in R) required before trailing begins.

InpTrailATRMult

Trailing distance behind price, as a multiple of ATR.

InpTrailStepR

Minimum trailing step (in R) to prevent excessive micro-modifications.

Whipsaw / Retest Position Management

Parameter

Description

InpRetestThreshold

Number of times price must re-enter the entry zone before the EA de-risks the position.

InpPartialProfitPct

% of volume closed when de-risking a position that is currently profitable.

InpPartialLossPct

% of volume closed when de-risking a position that is currently losing.

InpTPTightenFactor

Multiplier applied to the remaining distance to TP when de-risking (tightens the target).

InpBreakevenBufferPips

Buffer added beyond entry when the whipsaw logic moves SL to breakeven.

Recommended Use

  • Best suited to traders who want a structure-driven, semi-discretionary-feeling automated system rather than a pure scalper or grid/martingale EA.

  • Start on a demo account to observe the dashboard, confirm zone detection matches your own chart reading, and tune InpScoreThreshold, InpMaxSpreadPips, and the ATR distance filters to your broker's typical conditions.

  • The Grok AI module is optional — test the EA with InpUseAIAnalysis = false first to understand the baseline logic before layering AI confirmation on top.

  • As with any automated trading tool, use appropriate risk percentage settings and never risk capital you cannot afford to lose. Past performance shown in backtests or live results does not guarantee future performance.




Altri dall’autore
TrianglePatternGannEA Pro v7.0 Standalone - Complete Analysis & Optimization Guide Overview TrianglePatternGannEA Pro v7.0 is an advanced all-in-one Expert Advisor that combines Gann Triangle pattern detection with an intelligent anti-extreme filtering system. This EA operates completely standalone without requiring external indicators, making it efficient and reliable for automated trading. Core Features Analysis 1. Pattern Detection System Gann Triangle Recognition The EA identifies classic G
FREE
Triangle Pattern Gann EA
Nguyen Van Kien
5 (2)
Triangle Pattern Gann EA v3.4 - Trade Like the Legendary W.D. Gann Harness the Power of Geometric Price Patterns & Sacred Ratios Are you ready to trade with one of the most powerful pattern recognition systems ever developed? The Triangle Pattern Gann EA v3.4 brings the legendary wisdom of W.D. Gann into the modern algorithmic trading era. What Makes This EA Exceptional? Based on Proven Gann Methodology W.D. Gann was one of history's most successful traders, achieving over 90% accuracy u
FREE
Radar Signals
Nguyen Van Kien
RadarSignal XAUUSD — Multi-Timeframe Radar Dashboard for Gold Trading Stop guessing where Gold is heading. Let the Radar scan it for you. RadarSignal XAUUSD is a multi-timeframe technical dashboard built specifically for XAUUSD (Gold) traders who want a single, clean, visual answer to three questions every trade requires: Where do I enter? Where is my safe invalidation zone? Where is my realistic target? Instead of flipping between five indicators on three charts, RadarSignal fuses ADX, RSI, CCI
FREE
Harmonacci Pattern EA — Review & Parameter Guide Overview Harmonacci Pattern EA is a rule-based Expert Advisor for MetaTrader 5 that automates harmonic (XABCD) price pattern trading. It scans price swings using a faithful port of MetaQuotes’ own ZigZag indicator, matches the swing points against 19 harmonic pattern templates (Fibonacci ratio tables), constructs a Potential Reversal Zone (PRZ) for each candidate, and only opens a trade after price breaks out of that zone in the expected direction
FREE
GoldEasy MT5 - Professional DCA & Hedging Expert Advisor for XAUUSD Overview GoldEasy MT5 is a sophisticated automated trading system designed specifically for gold trading (XAUUSD). This Expert Advisor combines intelligent entry signals with advanced Dollar Cost Averaging (DCA) and optional hedging strategies to manage risk while maximizing profit potential in the volatile gold market. Key Features Smart Entry System Fibonacci Bollinger Bands (FBB) with 1.618 extension for precise overbought/ov
FREE
X AI Gold
Nguyen Van Kien
(X AI Gold) Grok Gold EA: Revolutionary XAUUSD Trading with xAI Artificial Intelligence & Real-Time Macroeconomic Calendar Greetings to traders and developers on MQL5, The gold market (XAUUSD) has always been one of the most fiercely contested battlefields in the Forex world. Extreme volatility, high liquidity, and absolute sensitivity to macroeconomic news make traditional Expert Advisors (EAs) based on rigid technical rules (if-else) very susceptible to Stop Loss triggers when the market cha
FREE
REVERSAL DETECTION EA v1.2 - PROFESSIONAL MARKET REVERSAL TRADING SYSTEM CAPTURE MARKET TURNING POINTS WITH PRECISION AND CONFIDENCE In the dynamic world of financial markets, identifying reversal points before they fully develop can be the difference between consistent profitability and missed opportunities. The Reversal Detection EA v1.2 represents a sophisticated algorithmic trading solution engineered to detect, confirm, and execute trades at critical market reversal zones with institutio
Reversal Detection Pro - Professional Trading Indicator REVERSAL DETECTION PRO Advanced Market Turning Point Indicator for MetaTrader 5 EXECUTIVE SUMMARY Reversal Detection Pro is a sophisticated algorithmic trading indicator designed for MetaTrader 5 that identifies high-probability market reversal points with exceptional precision. Built on advanced ZigZag methodology combined with dynamic ATR-based calculations and multiple EMA filters, this professional-grade tool provides traders with acti
# CopyTele WebRequest EA - The Ultimate Telegram Signal Copier Are you looking for a reliable, ultra-fast, and secure way to copy signals directly from Telegram to your MetaTrader 5 terminal without installing complex software, extensions, or risky external DLLs?  **CopyTele WebRequest EA** is a professional and fully automated utility that fetches trading signals from PUBLIC Telegram channels using standard HTTP requests (WebRequest) directly from t.me/s/ websites. It is engineered with robu
FREE
PatternZoneAutoTrading DCA Pro - Complete Analysis & Marketing Guide Professional EA Analysis Core Functionality Overview PatternZoneAutoTrading DCA Pro v3.00 is a sophisticated MetaTrader 5 Expert Advisor that combines advanced candlestick pattern recognition with dynamic support/resistance zone analysis and an intelligent Dollar-Cost Averaging (DCA) strategy. This EA represents a comprehensive automated trading solution designed for both novice and experienced traders. Key Technical Features 1
FREE
Indicatore Avanzato Gann Pattern - Trasforma il tuo Trading per Sempre Scopri il Sistema di Trading Segreto con un Tasso di Vittoria del 70-95% che i trader professionisti non vogliono che tu conosca! Sei stanco di indicatori che si ridisegnano, danno falsi segnali o ti lasciano confuso su quando entrare e uscire? L'Indicatore Avanzato Gann Pattern è qui per cambiare tutto. Basato sulla leggendaria teoria del Pattern 123 di W.D. Gann, lo stesso sistema che lo ha aiutato a raggiungere una pre
Professional Analysis: QuantumPriceAdvancedEA - A Critical Evaluation Executive Summary The QuantumPriceAdvancedEA represents an attempt to integrate quantum computing concepts into forex trading automation. While the implementation demonstrates technical competence in MQL5 programming, this analysis reveals significant discrepancies between the marketed quantum computing features and the actual algorithmic implementation. This review provides an objective assessment from both technical and prac
FREE
SmartRecoveryEA Ultimate: Revolutionizing Forex Gold Trading with Intelligent Recovery and Risk Mastery Introduction: Elevate Your Gold Trading Game in the Volatile Forex Arena In the fast-paced world of Forex trading, particularly on the gold market (XAUUSD), where volatility reigns supreme and price swings can make or break fortunes in minutes, having a robust Expert Advisor (EA) is not just an advantage—it's a necessity. Enter SmartRecoveryEA Ultimate v1.0 , a cutting-edge MT5 EA meticulously
FREE
GANN TRIANGLE PRO v4.0 - OPTIMIZATION ANALYSIS REPORT CURRENT VERSION ASSESSMENT (v3.8) Strengths Feature Evaluation Swing Point Detection Clear logic using Left/Right bars Fibonacci/Gann Ratios Properly applied 61.8%, 100%, 161.8% Dashboard Real-time updates with visual indicators Code Structure Clean, maintainable architecture Critical Limitations Issue Impact Win Rate Effect No Trend Filter Signals against major trend -20% to -30% Missing Volume Confirmation False breakouts not filt
FREE
Triangle Pattern Gann EA Pro v5.2.5 - Expert Analysis Professional Overview After thorough source code analysis, Triangle Pattern Gann EA Pro v5.2.5 is evaluated as a professionally built Expert Advisor with solid code architecture and scientifically grounded trading logic. Outstanding Strengths 1. Intelligent Pattern Detection System Uses Swing Point algorithm to identify pivot points (P1, P2, P3). Calculates Fibonacci retracement ratios (0.382–0.786) to validate patterns. Features pattern fi
Legacy of Gann Multi-AI Pro v6.7 - Professional Gold Trading Expert Advisor Revolutionary AI-Powered Trading System for MT5 Transform your XAUUSD (Gold) trading with the most advanced multi-AI Expert Advisor available. Legacy of Gann Multi-AI Pro v6.7 combines classical Gann pattern recognition with cutting-edge artificial intelligence from multiple providers, creating a powerful automated trading solution that adapts to market conditions in real-time. CORE FEATURES Multi-AI Integration with A
FREE
LEGACY OF GANN EA - PROFESSIONAL TRADING SYSTEM Unlock the Power of W.D. Gann's Trading Secrets Legacy of Gann EA is a professional automated trading system that brings the legendary Pattern 1-2-3 strategy to MetaTrader 5. Based on the time-tested principles of W.D. Gann, this EA identifies high-probability trading opportunities with mathematical precision. KEY FEATURES Advanced Pattern Recognition Automatic Pattern 1-2-3 Detection using ZigZag indicator Identifies impulse moves and co
FREE
RadarSignal XAUUSD — Multi-Timeframe Radar Dashboard for Gold Trading Stop guessing where Gold is heading. Let the Radar scan it for you. RadarSignal XAUUSD is a multi-timeframe technical dashboard built specifically for XAUUSD (Gold) traders who want a single, clean, visual answer to three questions every trade requires: Where do I enter? Where is my safe invalidation zone? Where is my realistic target? Instead of flipping between five indicators on three charts, RadarSignal fuses ADX, RSI, CCI
FREE
Legacy of Gann Enhanced EA v4.0 AI-Powered Trading System with Groq Integration Overview Legacy of Gann Enhanced EA is a sophisticated MetaTrader 5 Expert Advisor that combines classical Gann trading principles with cutting-edge artificial intelligence. This revolutionary trading system uses the proven Pattern 123 methodology enhanced with Groq AI analysis and economic news filtering to identify high-probability trade setups. What Makes This EA Special? AI-Powered Decision Making - Integ
FREE
Triangle Pattern Gann v3.1 - Complete Feature Documentation Core Functionality OverviewTriangle Pattern Gann v3.1 is a sophisticated MetaTrader 5 indicator that combines W.D. Gann's geometric trading principles with advanced triangle pattern recognition to deliver actionable trading signals. Primary Features1. Triangle Pattern Detection SystemAscending Triangle Recognition Function: Automatically identifies bullish continuation patterns Detection Criteria: Flat horizontal resistance line
Professional Analysis: AI Smart Trader v6.0 EA - A Comprehensive Technical Review Executive Summary After extensive evaluation of the AI Smart Trader v6.0 Expert Advisor, I can confidently say this represents a sophisticated approach to automated forex trading that addresses one of the most critical challenges traders face: recovery from drawdown situations. Having analyzed hundreds of trading systems over my career, this EA stands out for its intelligent state machine architecture and multi-lay
PZ PENTA-O PRO EA AUTOTRADER - PROFESSIONAL HARMONIC PATTERN TRADING SYSTEM PRODUCT OVERVIEW PZ Penta-O Pro EA AutoTrader is an advanced automated trading Expert Advisor engineered for MetaTrader 5 platform, specializing in the detection and execution of six classical harmonic pattern formations. This sophisticated system combines advanced pattern recognition algorithms with professional-grade money management and comprehensive position management capabilities to deliver consistent trading oppo
Pattern123
Nguyen Van Kien
Pattern123 EA — Reversal Trading on the Classic "1-2-3" Price Formation Introduction The "1-2-3" pattern is one of the oldest and most reliable reversal formations in technical analysis: it marks the point where an existing trend runs out of steam and a new one begins. Pattern123 EA automates the detection of this formation and manages the full trade lifecycle around it — from signal recognition to entry, stop-loss placement, take-profit, and an optional loss-recovery mechanism for advanced tra
Filtro:
Nessuna recensione
Rispondi alla recensione