MQL5 Algo Trading
551K subscribers
3.96K photos
6 videos
3.97K links
The best publications of the largest community of algotraders.

Subscribe to stay up-to-date with modern technologies and trading programs development.
Download Telegram
This article builds a compact MT5 position planning tool that turns Entry, Stop-Loss, and Take-Profit into interactive chart lines, so risk and sizing math updates instantly while levels are dragged.

It supports market, limit, and stop scenarios for both BUY and SELL. Market Entry auto-tracks Bid/Ask on every tick, while pending Entry stays user-controlled. Initial SL/TP spacing is derived from ATR to reflect current volatility, with a safe fallback when ATR isn’t available.

The EA validates the price structure (BUY: SL below Entry, TP above; SELL reversed) before computing stop distance, monetary risk from balance and risk %, normalized lot size using tick size/value plus min/max/step rules, reward, and risk-to-rewardβ€”without placing or modifying orders.

πŸ‘‰ Read | Docs | @mql5dev
❀35πŸ‘16✍3🀩3πŸ‘¨β€πŸ’»3πŸ‘Œ2πŸ‘€1
Rare β€œoutlier” bars break the core trading assumption that today resembles yesterday, yet they have no labels. This article implements Isolation Forest for MT5 as a compact MQL5 library that isolates points via random partitions, avoiding density modeling and handling multivariate features efficiently.

Key engineering choices make it testable and fast: a replayable 64‑bit RNG (splitmix64 + xorshift64*) for deterministic forests, iterative array-based trees with in-place partitioning, and the correct truncated-depth path-length correction and normalization. A 100‑tree fit on ~2.4k bars builds in ~2.4 ms; scoring one new bar is ~12 Β΅s.

Feature design is treated as the real lever: no raw prices, no lookahead, and careful column selection because isolation trees sample features uniformlyβ€”uninformative columns directly degrade detection. Validation includes b...

πŸ‘‰ Read | Docs | @mql5dev
❀12πŸ‘12🀩3πŸ‘Œ2πŸ”₯1
Dendritic Cell Algorithm (DCA) is a metaheuristic derived from innate immunity, originally published in 2005 for anomaly detection. The model integrates multiple signals over time and uses migration thresholds to avoid reacting to noise in single evaluations.

Optimization mapping treats high fitness as PAMP/Danger and low fitness as Safe, with Inflammation derived from population spread. Cells transform inputs into CSM, Semi, Mature via weighted sums and a shared (1+Inflammation) multiplier; migration triggers context selection (mature vs semi).

Per-solution MCAV aggregates contexts with exponential decay. MCAV drives control flow: above 0.5 triggers local mutation, otherwise either move toward best or reinitialize based on exploration rate. Implementation typically models cells, thresholds, weight matrices, agent assignment, and MCAV bookkeeping w...

πŸ‘‰ Read | AppStore | @mql5dev
❀25πŸ‘10πŸ‘Œ3πŸ”₯2🀩2
Auto ZigZag Fibonacci Golden Zone is an MT5 indicator that derives pullback entry zones from the latest confirmed swing using an internal ZigZag. It scans history to lock the most recent swing high/low, then draws Fibonacci retracements at 50%, 61.8%, and 78.6%.

The 61.8%–78.6% band is marked as the Golden Zone and extended a configurable number of bars. Optional chart labels can trigger when a candle closes inside the zone, with separate handling for uptrend and downtrend measurements.

A compact on-chart panel reports current price, swing points, exact fib levels, and usage steps. Key inputs include ZigZag Length (default 13), Golden Zone Length (15), swing price labels, and signal labels. Calculations are based on closed candles and remain fixed until a new swing is confirmed.

πŸ‘‰ Read | VPS | @mql5dev
❀20πŸ‘5🀩2πŸ†2πŸ”₯1πŸ‘Œ1πŸ‘¨β€πŸ’»1
Market Structure Shift (CHoCH) is used to confirm a directional reversal.

Bullish CHoCH occurs when price breaks above the last confirmed Lower High (LH), shifting bias from bearish to bullish. Bearish CHoCH occurs when price breaks below the last confirmed Higher Low (HL), shifting bias from bullish to bearish.

After confirmation, Areas of Interest (AOI) are mapped for execution. Common zones include Fibonacci Equilibrium anchored from the origin swing, and a post-CHoCH Fair Value Gap (FVG) formed within the first three candles of the breakout impulse, treated as an imbalance-based entry area.

Risk and targets are defined structurally. For buys, stop loss is placed below the origin swing low (0% Fibonacci anchor). For sells, stop loss is placed above the origin swing high (0% anchor). TP1 is set at the breakout structure level (100%). TP2 targets t...

πŸ‘‰ Read | NeuroBook | @mql5dev
❀17πŸ‘15⚑3🀩2πŸ‘Œ2πŸ”₯1
Dynamic flip zones update automatically, converting broken Support into SBR and broken Resistance into RBS on confirmed closes. Optional behavior allows broken zones to be removed instead of flipped.

Zones are drawn as normalized rectangles rather than thin lines. Width is adjusted using average historical volatility, reducing oversized areas and expanding narrow ones to keep sizing consistent across market regimes.

Repaint risk is reduced via confirmation bars that validate pivot points before zones are plotted. Pivot detection is based on ZigZag swing highs and lows, with additional filters to keep levels relevant.

Alerts are gated by a minimum move-away requirement. Price must travel a defined distance from a new zone before a retest can trigger notifications, cutting noise in ranges.

Overlap handling includes Most Extreme and Newest modes to ma...

πŸ‘‰ Read | NeuroBook | @mql5dev
❀25πŸ‘¨β€πŸ’»5πŸ‘3πŸ”₯3πŸ‘Œ2✍1πŸ‘€1
Many indicator specs claim β€œnon-repainting” without a measurable definition. A testable invariant is stricter: once a bar is closed and processed, any drawn object on that bar must never change, move, recolor, change text, or vanish.

A script operationalizes this by recording every object after an initial pass, then appending more bars and forcing a full recalculation so the indicator rebuilds from a longer history. Objects on already-closed bars are matched and compared field by field (anchor times/prices, color, text). This targets failures caused by object names tied to bar index rather than bar time.

Changes and disappearances are tracked separately; only changes falsify the claim. Empty comparisons are reported as inconclusive. Results are written to CSV (one row per symbol/timeframe/step) including compared/changed/vanished counts and the first o...

πŸ‘‰ Read | VPS | @mql5dev
❀27πŸ‘12πŸ”₯3πŸ‘Œ2πŸ‘€2
This article builds a practical case for a Cairo-style 2D renderer in pure MQL5 to draw modern UI elements (rounded rectangles, rings, gradients, translucent layers, arbitrary polygons) as a single OBJ_BITMAP_LABEL, avoiding the performance and feature limits of native chart objects and CCanvas.

The core model separates geometry (paths) from paint (sources), then converts paths into a per-pixel coverage mask for true anti-aliasing. Rendering becomes compositing: source through mask onto destination, so new paints (solid, gradients, images) automatically work with all shapes.

Part 1 focuses on the foundation: a strict ARGB uint color pipeline compatible with ResourceCreate, and a reusable pixel surface bound to one bitmap objectβ€”keeping later improvements isolated to masking and painting logic.

πŸ‘‰ Read | Calendar | @mql5dev
❀22πŸ‘6πŸ‘Œ2🀩1
Manually scrolling to a specific candle in MT5 becomes impractical on lower timeframes and deep history. This History Navigator EA solves it with a small dialog where day/month/year/hour/minute are entered, then the chart jumps to the correct historical area and can return to the live market view in one click.

The design separates concerns: lifecycle code in HistoryNavigator.mq5, and UI + logic in a CNavigatorDialog class built on the Standard Library (CAppDialog, event map, controls). Inputs are validated in two stages: range checks plus real calendar validation with leap-year handling, then converted via MqlDateTime + StructToTime().

Bar location uses CopyTime() and a binary search over available history, selecting the latest bar open not exceeding the requested timestamp. Chart positioning disables auto-scroll/shift, centers the target using CHART_VISIBLE_...

πŸ‘‰ Read | Forum | @mql5dev
❀13πŸ‘4πŸ”₯3πŸ‘Œ2
Momentum oscillators often become noisy when raw price differences are used directly. A Hull Moving Average layer can smooth the series while staying responsive to direction changes.

An MQL5 implementation combines classic momentum (Close[i] minus Close[i+Length]) with HMA built from multiple WMAs: a fast WMA on half period, a slow WMA on full period, then a final WMA on the rounded square-root period.

The design relies on separate buffers for raw momentum, intermediate HMA values, final output, color indices, a zero reference, and a fixed gray fill between the line and zero.

Interpretation is based on position versus the zero line; crossings indicate state change but degrade in flat regimes due to frequent flips and reduced signal quality.

πŸ‘‰ Read | Forum | @mql5dev
❀14πŸ‘7πŸ”₯1🀩1πŸ‘Œ1
Clustered feature importance depends on a correlation matrix that is both denoised and detoned. Estimation noise inflates spurious correlations, and a dominant first eigenvector from shared regime exposure makes unrelated feature families look similar. Both effects break clustering and bias MDI/MDA via substitution.

Noise is bounded using a Marcenko–Pastur fit, with q = T/N and sigma^2 fit to the empirical eigenvalue density. Two common silent failures are inverting q and using an incompatible KDE bandwidth definition, both yielding plausible but incorrect ceilings.

For serially correlated bars, raw T overstates information. An AR(1)-style effective sample size can shift lambda_max enough to change factor retention near the margin. After denoising (constant residual eigenvalues) and detoning (remove top eigenvector), ONC/K-means clustering recovers...

πŸ‘‰ Read | AlgoBook | @mql5dev
πŸ‘13❀8🀩1πŸ‘Œ1
MetaTrader 5 file access stays inside the terminal sandbox, so identical file APIs can yield different internal layouts while producing the same terminal output.

Directory traversal in MQL5 splits into two paths. Interactive selection uses FileSelectDialog with a fixed root, constrained filters, and flags; results come back via a dynamic string array and are typically passed into FileOpen.

Non-interactive enumeration relies on FileFindFirst/FileFindNext. An empty sandbox returns an invalid handle and is not a code error. Basic enumeration lists only the current directory; recursive traversal requires passing subdirectory paths. A trailing slash in returned names can be used to detect directories without FileIsExist, but output may lose full path context unless it is assembled explicitly.

πŸ‘‰ Read | AlgoBook | @mql5dev
🀩5❀3πŸ‘3πŸ‘Œ1
A losing EURUSD short exposed a deeper issue: stacking RSI/MACD/Stochastic (and even a neural net trained on them) still reduces a nonlinear, chaotic market into mostly linear price transforms, so the model misses context.

LLMs can discuss that context, but they are nondeterministic: small prompt or temperature changes flip conclusions, which makes probability outputs unusable for trading decisions.

A more reliable path combined CatBoost with quantum feature extraction. Plain indicator features stalled near 59% accuracy; the breakthrough was quantum encoding with 8 qubits plus CZ entanglement, producing a non-uniform state histogram that captured higher-order relationships across indicators.

Four derived quantum statistics (entropy, dominant-state strength, state-count complexity, distribution variance) became numeric features. Adding them to 33 tec...

πŸ‘‰ Read | Calendar | @mql5dev
❀8πŸ‘3πŸ‘Œ2