ru
Feedback
MQL5 Algo Trading

MQL5 Algo Trading

Открыть в Telegram

The best publications of the largest community of algotraders. Subscribe to stay up-to-date with modern technologies and trading programs development.

Больше

📈 Аналитический обзор Telegram-канала MQL5 Algo Trading

Канал MQL5 Algo Trading (@mql5dev) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 512 083 подписчиков, занимая 153 место в категории Технологии и приложения и 5 место в регионе Великобритания.

📊 Показатели аудитории и динамика

С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 512 083 подписчиков.

Согласно последним данным от 18 июня, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 8 583, а за последние 24 часа — 287, при этом общий охват остаётся высоким.

  • Статус верификации: Не верифицирован
  • Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 3.48%. В первые 24 часа после публикации контент обычно набирает 1.97% реакций от общего числа подписчиков.
  • Охват публикаций: В среднем каждый пост получает 17 829 просмотров. В течение первых суток публикация набирает 10 092 просмотров.
  • Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 40.
  • Тематические интересы: Контент сосредоточен на ключевых темах, таких как indicator, chart, mql5, candle, range.

📝 Описание и контентная политика

Автор описывает ресурс как площадку для выражения субъективного мнения:
The best publications of the largest community of algotraders. Subscribe to stay up-to-date with modern technologies and trading programs development.

Благодаря высокой частоте обновлений (последние данные получены 19 июня, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Технологии и приложения.

512 083
Подписчики
+28724 часа
+2 1467 дней
+8 58330 день
Архив постов
Strategy Tester gaps around CalendarValueHistory() make news-driven EAs hard to verify. Historical events are often missing,
Strategy Tester gaps around CalendarValueHistory() make news-driven EAs hard to verify. Historical events are often missing, so entry blocks, SL/TP suspension, and pre-news closes never trigger, producing misleading curves and no audit trail in logs. A deterministic fix is a static CSV of events (time, currency, importance, name) loaded once in OnInit() when MQL_TESTER is true. Tester mode switches isUpcomingNews()/IsNewsTime() to an in-memory scan, while live trading keeps the terminal calendar API unchanged. Implementation points: strict CSV format compatible with StringToTime(), FILE_COMMON access for tester sandbox, a symbol currency cache built at init, and an optional script that exports the terminal calendar to CSV for chosen date ranges. 👉 Read | NeuroBook | @mql5dev #MQL5 #MT5 #AlgoTrading

CATCH targets subtle anomalies in multivariate market series by moving analysis to the frequency domain, where volatility bur
CATCH targets subtle anomalies in multivariate market series by moving analysis to the frequency domain, where volatility bursts and regime shifts separate into different bands. Its key idea is “frequency patching”: split the complex FFT spectrum into overlapping patches, learn normal behavior per band, then reconstruct with iFFT and flag anomalies via reconstruction error. A channel-aware fusion stage uses a masked Transformer to model cross-asset dependencies without letting irrelevant instruments dilute attention. The mask is learned and refined with an explicit objective to strengthen meaningful inter-channel links while suppressing noise. The article then maps these ideas into MQL5 with OpenCL acceleration: complex-valued convolution and masked attention are implemented using float2 buffers for real/imag parts, reusing existing layer infrastr... 👉 Read | AlgoBook | @mql5dev #MQL5 #MT5 #AlgoTrading

L1 trend filtering can be used to estimate piecewise-linear price trends while suppressing short-term noise. The method keeps
L1 trend filtering can be used to estimate piecewise-linear price trends while suppressing short-term noise. The method keeps turning points and slope changes that are often lost with moving averages or heavy smoothing. An example implementation in MQL5 demonstrates L1 Trend Filter routines for float and double vectors, validated on random-walk simulated series. This setup helps verify numerical stability, parameter sensitivity, and output consistency across data types. In trading workflows, the filtered trend can support regime detection, adaptive risk controls, and signal preconditioning by separating structural movement from micro-variations. The same code is packaged as a shared project under MQL5\Shared Projects\L1Trend. 👉 Read | Calendar | @mql5dev #MQL5 #MT5 #Indicator

An Expert Advisor can automate session control by recalculating daily start, end, and close times, clearing internal state, a
An Expert Advisor can automate session control by recalculating daily start, end, and close times, clearing internal state, and initializing the price range used for breakout logic. During the range window, minute-level highs and lows are sampled to compute the session maximum and minimum. A chart rectangle is updated in real time to reflect the current consolidation zone. After the range window completes, the close of the latest finished candle is compared to the stored boundaries, independent of the range end timestamp. On confirmation, a market order is placed in the breakout direction, with take-profit set to the measured range size and stop-loss set to the opposite boundary. 👉 Read | VPS | @mql5dev #MQL5 #MT5 #EA

DADA (Adaptive Bottlenecks + Dual Adversarial Decoders) targets time-series anomaly detection with adaptive compression, dual
DADA (Adaptive Bottlenecks + Dual Adversarial Decoders) targets time-series anomaly detection with adaptive compression, dual reconstructions for normal vs anomalous regimes, and patching/masking to reduce noise and improve generalization. The Adaptive Bottlenecks block is implemented as CNeuronAdaBN inheriting CNeuronMoE. It reuses top-k gating and expert routing, but populates experts with autoencoders at multiple latent sizes. A convolution stage produces a latent vector whose segments map to each autoencoder, followed by multi-window conv, tensor transpositions, and per-autoencoder decoder weights. Instead of a monolith, the system is assembled from library components into three jointly trained models: a state encoder autoencoder with patching/masking and AdaBN, an Actor replacing the anomalous decoder for action selection, and a direction predictor as a deci... 👉 Read | Calendar | @mql5dev #MQL5 #MT5 #AI

Deterministic Oscillatory Search (DOS) is a reproducible metaheuristic for global optimization that removes randomness entire
Deterministic Oscillatory Search (DOS) is a reproducible metaheuristic for global optimization that removes randomness entirely. Particles start from deterministically distributed points, making runs repeatable under identical inputs—useful for research and trading system validation. Search is driven by a “fitness slope” state: improving, worsening, or unknown. When fitness deteriorates, a particle reflects (reverses direction) and halves velocity, producing controlled oscillations that refine local extrema without derivatives. If oscillations stall (worsening persists), DOS switches to a swarm step, pushing particles toward the current global best using a configurable movement factor. An MT5-style implementation centers on per-particle velocity vectors, range clamping, best-solution tracking, and adaptive velocity updates. Tests show stronger behav... 👉 Read | Quotes | @mql5dev #MQL5 #MT5 #algorithm

Manual liquidity zone work on higher timeframes misses the internal structure of the base candle. Verifying whether a zone wa
Manual liquidity zone work on higher timeframes misses the internal structure of the base candle. Verifying whether a zone was built by a triangle, rectangle, or double top/bottom requires repeated lower-timeframe zooming, which is slow and produces inconsistent labeling. An automation module is proposed to classify the lower-timeframe geometry inside each base candle as ascending triangle, descending triangle, symmetrical triangle, rectangle, M, W, or undefined, then annotate the zone and alerts with the result. Implementation outline targets MQL5: isolate detection logic in an include file (CGeometryDetector), add configurable tolerances and swing-distance filtering, compute slopes for symmetry, and integrate by extracting intrabar data for each base candle interval and storing the detected shape per zone. 👉 Read | AppStore | @mql5dev #MQL5 #MT5 #Indicator

Trading losses often come from trading at the wrong time: low-liquidity hours and scheduled news can invalidate otherwise sol
Trading losses often come from trading at the wrong time: low-liquidity hours and scheduled news can invalidate otherwise solid entries via spread expansion, slippage, and regime shifts. This system turns “discipline” into enforceable rules by blocking execution outside defined sessions and during configurable pre/post news blackout windows. The MQL5 design uses a modular control layer: a permission engine (single boolean allow/deny), an enforcement EA that intercepts transactions so neither manual trades nor other EAs can bypass limits, and a dashboard for visibility. Key implementation details include external session/news files for no-recompile updates, smart caching via file timestamps to avoid per-tick I/O, robust parsing with validation, fast minute-based session checks with early exits, and correct handling of day rollover plus “next allowed time” ca... 👉 Read | Quotes | @mql5dev #MQL5 #MT5 #EA

A MetaTrader 5 canvas butterfly curve renderer is extended from a four-segment anti-aliased outline to a full illustration wi
A MetaTrader 5 canvas butterfly curve renderer is extended from a four-segment anti-aliased outline to a full illustration with wing fills, texture, and anatomical body details. Rendering remains based on precomputed parametric points mapped to pixel space and processed through the same supersampled pipeline. Wing interiors are filled via scanline polygon rasterization with a nonzero winding rule to handle self-intersections. Three layers are added: outer vertical gradient, an inward-scaled vertical gradient, and an innermost inward-scaled radial gradient. Veins are rendered as thin anti-aliased lines from the curve origin to sampled boundary points. Scale texture is added using dense boundary sampling and small filled circles, colored per parametric segment via t ranges (3π, 6π, 9π), then slightly brightened toward edges. The body is composed fro... 👉 Read | CodeBase | @mql5dev #MQL5 #MT5 #AlgoTrading

MQL5 port of four bet-sizing methods lands with a five-file stack designed for a tick-driven EA without NumPy/SciPy. BetSizin
MQL5 port of four bet-sizing methods lands with a five-file stack designed for a tick-driven EA without NumPy/SciPy. BetSizingUtils.mqh adds missing statistical primitives: normal CDF/ICDF via Hart minimax rational approximation, raw-moment computation, shared structs, plus an O(N log N) sweep-line counter to replace O(N²) overlap scans for concurrent positions. AvgActiveSignals remains O(N²) by necessity when averaging signal values across active intervals. Sizing methods map to include files: probability sizing (z-score, averaging, discretization), dynamic forecast-price sizing (sigmoid/power, closed-form calibration, limit price via inverse sizing), budget sizing (exposure normalization with seeded running maxima), and reserve sizing using EF3M-3 mixture fitting from three moments with multi-start analytic solves and log-likelihood selection. Output... 👉 Read | Signals | @mql5dev #MQL5 #MT5 #AlgoTrading

No source text was included. Provide the text to convert, and optionally note the target platform and any key points that mus
No source text was included. Provide the text to convert, and optionally note the target platform and any key points that must be kept or removed (product names, dates, numbers). 👉 Read | Signals | @mql5dev #MQL4 #MT4 #EA

Position entry is split into multiple legs, with signals derived from reversal probability by block scale. Trend and flat are
Position entry is split into multiple legs, with signals derived from reversal probability by block scale. Trend and flat are treated as probabilistic states across concurrent scales, so analysis starts from the smallest blocks and escalates until a working scale is justified. Long one-direction moves require starting new position series before the previous series closes. A second series is allowed only after the first series basic timeframe exceeds a threshold, then a start signal is found on the second series TF1 and confirmed by detecting a flat segment on the second series basic timeframe using an adaptive Bmin–Bmax range and a probability-based flat criterion. Additional series profits are accumulated into a reserve and used to close the most loss-making erroneous positions when coverage rules are met. Profit from series N+1 compensates errors... 👉 Read | Calendar | @mql5dev #MQL5 #MT5 #AlgoTrading

A next-generation SuperTrend variant adds an internal ML layer to classic trend-following. Core parameters are adjusted bar-b
A next-generation SuperTrend variant adds an internal ML layer to classic trend-following. Core parameters are adjusted bar-by-bar from recent signal outcomes, and entries are gated by a multi-stage confirmation path before any arrow is plotted. No external libraries are required, and a hidden Confidence buffer is exposed for automated systems to read directly. Two bands are computed (Bull/Bear) from an RMA-smoothed ATR envelope on a selectable price basis. Band width and ATR length start from inputs and are periodically re-tuned by an optimizer, widening in high volatility and tightening in calmer conditions. Signals run in Reversal mode (confirmed trend flip with pivot) or Breakout mode (new extreme inside trend, contrarian trigger). Candidates must pass RSI state checks, optional tick-volume surge validation, and an optional key-level depth test ... 👉 Read | CodeBase | @mql5dev #MQL5 #MT5 #Indicator

XANDER Adaptive Cross overlays two adaptive moving averages designed to react to different market properties. A crossover tri
XANDER Adaptive Cross overlays two adaptive moving averages designed to react to different market properties. A crossover triggers a color-coded arrow to flag a potential trend shift. When both lines remain aligned, the chart provides continuous visual confirmation of directional bias. The fast line is range-aware, adjusting speed based on where price sits within the recent high/low band. It accelerates near extremes to react quicker to breakouts and slows near the midpoint to reduce noise. The slow line is efficiency-aware, tightening during clean directional moves and flattening during choppy action. Color states indicate bias: fast above slow signals bullish, fast below slow signals bearish, and gray indicates transition or undefined conditions. Trading use cases typically wait for an arrow, confirm both lines have flipped to the same bias, and re... 👉 Read | CodeBase | @mql5dev #MQL5 #MT5 #Indicator

Machine learning can be applied to grid and martingale trading by changing the labeling from single-trade direction to group
Machine learning can be applied to grid and martingale trading by changing the labeling from single-trade direction to group P/L across all triggered orders in a fixed horizon (for example, 15 bars). Labels can be assigned by max total profit, weighted profit per triggered order, or max triggered orders with net profit. Implementation uses configurable GRID_SIZE, GRID_DISTANCES, and GRID_COEFFICIENTS (regular grid vs martingale). Each sample tracks grid state, triggered levels, and aggregated buy/sell profit, then discards uninformative segments. A sequential tester is required to avoid future leakage and to close grids on opposite signals. CatBoost models can be trained on synthetic GMM samples, selected by R^2, exported to MQL5 with saved grid settings, and executed via an EA that places pending orders using per-level multipliers. Results show regime d... 👉 Read | Forum | @mql5dev #MQL5 #MT5 #AlgoTrading

Market Clock Pro is a MetaTrader 5 indicator that adds a candle-close countdown HUD with contextual market data. It shows tim
Market Clock Pro is a MetaTrader 5 indicator that adds a candle-close countdown HUD with contextual market data. It shows time remaining to the next bar close, active trading sessions in UTC (Tokyo, London, New York, Sydney), live spread, daily range versus ADR, and an explicit market-closed state per symbol. Session logic supports overlaps and counts down to the nearest session end. Market status can report reasons such as NYSE CLOSED (holiday), LSE CLOSED (weekend), or XETRA CLOSED (session). Symbol-to-market mapping covers NYSE, LSE, XETRA, TSE, HKEX, ASX, and SSE, with a manual override for non-standard broker tickers. Holidays are provided via an optional plain-text calendar (2026–2027). Implementation notes include a millisecond timer as the only render driver, no indicator buffers, and label de-duplication before redraw. No DLLs, WebRequest, S... 👉 Read | AlgoBook | @mql5dev #MQL5 #MT5 #Indicator

A next-generation trading EA concept combines three components: Markov state modeling, an MLP used on transition probabilitie
A next-generation trading EA concept combines three components: Markov state modeling, an MLP used on transition probabilities, and a hedging-aware execution layer. Market “state” is defined as a multi-factor vector, not raw price. Daily change is normalized by ATR to classify three regimes (up, down, flat), keeping thresholds volatility-adjusted across instruments. A 3x3 transition matrix is built from the last window of bars, with fallback to uniform probabilities when a state is absent. The MLP consumes the 9 matrix elements (9-40-2, ReLU) and outputs up/down probabilities. Retraining runs every 48 hours. Execution can hold long and short simultaneously when both probabilities are elevated, with constraints on max positions and minimum entry distance. Reported tests cite ~28.7% annual return at 14.2% max drawdown (Sharpe 1.65), with EURUSD optimization... 👉 Read | VPS | @mql5dev #MQL5 #MT5 #EA

Forex forecasting sits between “no edge” randomness and exploitable structure. The article starts with an EA that flips direc
Forex forecasting sits between “no edge” randomness and exploitable structure. The article starts with an EA that flips direction randomly each new bar; results stay negative once spread is accounted for, showing why execution costs matter. Adding realistic constraints (hold time, single position, SL/TP exits) turns the same random core into something that can be optimized. Seed selection becomes a search problem, with the secretary problem suggested to reduce brute-force runs. From there, it builds data-driven signals: an empirical distribution of price increments (trim extremes to form a probabilistic channel), a simplified linear-trend rate updated to stabilize forecast error and tied to SMA, and a random-walk exponent estimated via log-scaled path length vs time to classify flat vs trend. Finally, it explores polygonal-number weighted averages as... 👉 Read | Quotes | @mql5dev #MQL5 #MT5 #AlgoTrading

Retail trading systems often base stop-loss distance and position sizing on Average True Range. ATR is a trailing statistic,
Retail trading systems often base stop-loss distance and position sizing on Average True Range. ATR is a trailing statistic, so it can understate risk during regime changes and react late during shock events. A common institutional approach is conditional variance forecasting with GARCH(1,1). Rather than averaging ranges, it models next-period variance from return shocks and volatility persistence, capturing clustering where large moves tend to be followed by large moves. A practical implementation computes log returns and updates variance using standard parameters often seen in finance (alpha 0.09, beta 0.90), while keeping them configurable for calibration. Running the calculation natively in C++ avoids external runtime dependencies. In execution logic, the forecasted variance stream can drive adaptive risk controls: expand stop distances or reduce... 👉 Read | Freelance | @mql5dev #MQL5 #MT5 #AlgoTrading

Raw candlesticks inject short-term noise into algorithmic rules, making signals brittle and backtests harder to validate. Thi
Raw candlesticks inject short-term noise into algorithmic rules, making signals brittle and backtests harder to validate. This Renko overlay indicator addresses that by discretizing price into fixed brick steps and drawing the result directly on the MT5 chart. Brick generation is anchored to a deterministic base: the first available candle close. Each new candle close is compared to the latest confirmed brick close; price change divided by the user-defined brick size yields the number of full bricks to append, while partial movement is ignored until completed. Trend handling is explicit: continuation builds normally, but reversals require an opposite move of two bricks before switching direction, filtering shallow pullbacks. Bricks are stored in a dynamic close-price array, rendered as rectangle objects, capped by a max-history setting, and updated effi... 👉 Read | Signals | @mql5dev #MQL5 #MT5 #Indicator