Fan sayfamıza katılın
SMC Liquidity Sweep Scalper (Order Block EA with Live Win-Rate Tracking) - MetaTrader 5 için uzman
- Yayınlayan:
-
Rana Ali
Hi, I'm Ali. 24 years old, trading for around 5 years, and developing MQL5/MQL4 tools. I mainly work on automating manual strategies, fixing broken EA logic, and building clean indicators. I care more about clean architecture and proper risk management than over-complicated code. Always down to talk - Görüntülemeler:
- 286
- Derecelendirme:
- Yayınlandı:
-
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
What It Is
This is a Smart Money Concepts style scalper built around one core idea. Price often wicks past a recent high or low to trigger stops before reversing. That wick is a liquidity sweep. This EA waits for exactly that. It watches for price to poke past a recent swing high or low and then close back through it. The candle that made that sweep gets treated as an Order Block. Once a following candle confirms the move with a small break of structure back through that zone the EA takes the trade.
How It Works Step By Step
- Tracks the most recent unswept swing high and low using confirmed closed bars only so nothing repaints after the fact
- Watches for a liquidity sweep beyond that level
- Waits a configurable number of bars for a confirmation break back through the sweep candle's body
- Enters at market with a stop loss placed beyond the sweep extreme and a fixed R:R take profit sized off risk percent of balance
- Scales everything off ATR instead of fixed points so the same settings behave sensibly on Gold EURUSD or anything else rather than being tuned for one instrument alone
A Scorecard Not Just A Drawn Zone
Most SMC tools draw a box and leave you to judge it yourself. This one goes further. Every trade the EA takes gets a labeled box on the chart showing the historical win rate for that exact setup type — bullish or bearish — based on the EA's own closed trades so far. Once the trade closes the box updates to WIN or LOSS. Over time you end up with a running scorecard built from real results instead of a static zone that never tells you whether it actually worked.
Trend Filter And Quality Gates
A higher-timeframe trend filter compares price against an EMA on a timeframe you choose so the EA only takes sweeps that agree with the bigger picture. On top of that a few quality gates run before every entry. The stop distance has to be meaningful relative to both ATR and the current spread. The confirmation candle has to show real momentum rather than a weak drift through the level. Weak setups get filtered out before they ever reach the order ticket.
Results So Far
Below is a batch of optimization passes run across a spread of symbols on H1. Starting balance for this run was 10000 per pass.
| Symbol | Net Profit | Trades | Profit Factor | Expected Payoff | Drawdown % | Recovery Factor | Sharpe Ratio |
|---|---|---|---|---|---|---|---|
| AUDUSD | +1766.88 | 26 | 2.36 | 67.96 | 4.32% | 3.48 | 11.05 |
| USDCNH | +198.47 | 7 | 1.49 | 28.35 | 4.57% | 0.42 | 0.20 |
| USDCAD | +152.63 | 23 | 1.11 | 6.64 | 6.02% | 0.24 | 0.74 |
| MSFT | +94.20 | 2 | 1.94 | 47.10 | 1.63% | 0.56 | 0.13 |
| USDSEK | 0.00 | 0 | — | — | 0.00% | — | — |
| AMD | -135.55 | 6 | 0.73 | -22.59 | 4.84% | -0.27 | 0.20 |
| GBPUSD | -151.11 | 16 | 0.86 | -9.44 | 3.83% | 0.39 | 0.55 |
AUDUSD stood out clearly in this batch with a strong profit factor and recovery factor across a healthy 26 trades. USDCNH and USDCAD came out mildly positive but on thin trade counts that don't say much yet. GBPUSD and AMD closed the batch negative. MSFT and AMD were part of a broader symbol sweep during optimization but they're stocks not forex pairs and this EA was not built or intended for that market. Take those two rows as reference only.
A live demo run alongside this showed the EA managing small positions correctly in real time — a EURUSD buy at 0.1 lot and a USDCHF buy at 0.01 lot both opened and tracked with accurate live profit on a 100000 balance account. Nothing dramatic yet but it confirms execution and tracking work as expected.
This spread of outcomes is exactly the point of showing raw numbers instead of a highlight reel. One set of logic run unmodified across different instruments will always land somewhere between AUDUSD's result and GBPUSD's. That's normal. It's also exactly why you shouldn't assume this performs the same on whatever pair you attach it to.
Honest State Of This Project
This is an early build. Testing so far has been mainly on H1 across a handful of forex pairs. Results vary a lot by symbol as the table above shows plainly. It performed well in testing on some pairs and lost on others. That's expected for a single rule set applied across different instruments without per-symbol tuning but it means you should not assume profitability on whatever symbol you attach it to. Backtest it yourself on your own pair timeframe and broker before running it on even a demo account. Don't run it on stocks or CFDs. This logic was built around forex-style session and liquidity behavior specifically.
Key Inputs
InpSwingLookback / InpMaxConfirmationBars — structure detection and how many bars the EA waits for confirmation.
InpATRPeriod / InpMinSweepATRMult / InpSLBufferATRMult / InpMinSLToATRMult / InpMinSLToSpreadRatio — volatility-based sizing and the quality filters that block weak setups.
InpUseTrendFilter / InpTrendTimeframe / InpTrendMAPeriod — the higher-timeframe bias filter.
InpRiskPercent / InpRewardRatio / InpMaxSpreadPoints / InpMagicNumber — core trade management.
InpUseSessionFilter / InpSessionStartHour / InpSessionEndHour — an optional server-time trading window.
Final Word
This does not guarantee profit on any symbol or account. Past backtest results are not a promise of future performance. Test thoroughly on a demo account and understand the logic before trusting it with real funds. Treat this as a starting point you can build on rather than a finished product.
Free to use and modify. Feedback and reported issues are welcome. This is still evolving.
RiskPilot Pro — Drag-to-Trade Risk Panel with Break-Even, Trailing and a Daily Loss Guard
Drag your stop loss where you actually want it, hit Buy or Sell, and the lot size is already correct — no calculator, no spreadsheet. Handles break-even, trailing, and shuts trading down for the day if you hit your loss limit.
Extract information from the MT5 broker
This MT5 EA is a diagnostic tool that does not execute trades, but collects and displays technical specifications relating to the broker and the trading environment. The code is structured into four main blocks: Data Collection (CollectAll): Retrieves information on the account (leverage, currency), the symbol (digits, spread, swap, volumes, stop levels), latency (ping) and time zone (Server-UTC difference). Calculates the swap in real currency. Sampling (OnTick): Updates spread statistics (minimum, average, maximum) in real time. Output: Prints the data to the ‘Experts’ log, saves it to a CSV file and displays it on a graphical panel on the chart (UpdatePanel). Helper: Functions such as CalcSwapInCurrency and various *ToStr functions convert the broker’s raw numerical data into readable strings.
Session Manipulation and Algorithmic Reaction Tracker
Closed-bar ICT/SMC session-liquidity scanner for three symbols, with confirmed MSS, FVG retests, risk/reward projections and optional macro context.
MACD Signals
Indicator edition for new platform.