MetaTrader 5 sandbox navigation can be implemented via OS dialogs for convenience or via code to enumerate files and directories. The code-driven path becomes necessary when output must be filtered and ordered by attributes such as creation or modification time.
MQL5 provides ArraySort for numeric arrays, but it does not handle strings. A custom bubble-sort style routine can generalize sorting, yet string ordering requires explicit comparison rules.
Using StringCompare alone produces lexicographic ordering, which misplaces numeric strings. Adding length checks fixes numeric strings but can break dictionary word ordering. A revised comparator that switches strategy restores expected results for both cases.
Bubble sort remains O(nΒ²) and is suitable mainly for small datasets or demonstration, not large directory listings.
π Read | Freelance | @mql5dev
MQL5 provides ArraySort for numeric arrays, but it does not handle strings. A custom bubble-sort style routine can generalize sorting, yet string ordering requires explicit comparison rules.
Using StringCompare alone produces lexicographic ordering, which misplaces numeric strings. Adding length checks fixes numeric strings but can break dictionary word ordering. A revised comparator that switches strategy restores expected results for both cases.
Bubble sort remains O(nΒ²) and is suitable mainly for small datasets or demonstration, not large directory listings.
π Read | Freelance | @mql5dev
β€14π7π1
SCNN reframes multivariate forecasting as an explicit decomposition problem, addressing non-stationarity and regime shifts that make generic neural models brittle and hard to interpret.
The architecture splits each series into long-term, seasonal, short-term, and cross-series co-evolving components, plus a residual. Each component is normalized with additive and multiplicative terms, then handled by a specialized subnetwork matched to its dynamics.
Decomposition and reconstruction are embedded inside the network, enabling information flow between components. A two-branch module adapts parameters online to changing autocorrelation, while structural regularization discourages noise-driven features.
For trading systems, this yields more stable forecasts during distribution shifts and anomalies, with practical computational cost and clearer diagnos...
π Read | CodeBase | @mql5dev
The architecture splits each series into long-term, seasonal, short-term, and cross-series co-evolving components, plus a residual. Each component is normalized with additive and multiplicative terms, then handled by a specialized subnetwork matched to its dynamics.
Decomposition and reconstruction are embedded inside the network, enabling information flow between components. A two-branch module adapts parameters online to changing autocorrelation, while structural regularization discourages noise-driven features.
For trading systems, this yields more stable forecasts during distribution shifts and anomalies, with practical computational cost and clearer diagnos...
π Read | CodeBase | @mql5dev
β€15π6π€©4π1
This update refactors the MT5 position indicator to support removing stop-loss and take-profit directly from the chart, alongside the existing βclose positionβ interaction.
Core changes focus on decoupling UI elements into a reusable C_ElementsTrade class. C_IndicatorPosition now holds three pointers (open, SL, TP), initializes them to NULL, allocates with new only when needed, and reliably frees memory with delete while resetting pointers to avoid invalid dereferences.
Event handling is hardened: DispatchMessage first validates pointers, then verifies ticket ownership and server-side position existence. Protective levels are created, updated, or destroyed based on whether the server reports a nonzero SL/TP, keeping the chart synchronized with real trade state.
C_ElementsTrade centralizes creation of the price line and an action button, relying on M...
π Read | NeuroBook | @mql5dev
Core changes focus on decoupling UI elements into a reusable C_ElementsTrade class. C_IndicatorPosition now holds three pointers (open, SL, TP), initializes them to NULL, allocates with new only when needed, and reliably frees memory with delete while resetting pointers to avoid invalid dereferences.
Event handling is hardened: DispatchMessage first validates pointers, then verifies ticket ownership and server-side position existence. Protective levels are created, updated, or destroyed based on whether the server reports a nonzero SL/TP, keeping the chart synchronized with real trade state.
C_ElementsTrade centralizes creation of the price line and an action button, relying on M...
π Read | NeuroBook | @mql5dev
π14β€12π€©2π2π1
Random-walk MCMC methods degrade in high-dimensional models due to small effective step sizes, high autocorrelation, and low throughput. Hamiltonian Monte Carlo addresses this by using gradients of the log target density to generate long, directed trajectories.
HMC augments parameters z with momentum r and defines a Hamiltonian H(z,r)=E(z)+K(r), with E(z)=-log p(z). Leapfrog integration provides reversible, volume-preserving proposals, with Metropolis correction based on energy error.
A 100D correlated normal test case is used, including adaptive tuning of step size epsilon and a diagonal mass matrix. Warm-up is accelerated via MAP initialization using L-BFGS.
Sampling quality is tracked using Rhat, ESS, MCSE, summary stats, and runtime monitoring of log density stability, acceptance ratio, step size, and divergences.
π Read | Quotes | @mql5dev
HMC augments parameters z with momentum r and defines a Hamiltonian H(z,r)=E(z)+K(r), with E(z)=-log p(z). Leapfrog integration provides reversible, volume-preserving proposals, with Metropolis correction based on energy error.
A 100D correlated normal test case is used, including adaptive tuning of step size epsilon and a diagonal mass matrix. Warm-up is accelerated via MAP initialization using L-BFGS.
Sampling quality is tracked using Rhat, ESS, MCSE, summary stats, and runtime monitoring of log density stability, acceptance ratio, step size, and divergences.
π Read | Quotes | @mql5dev
π14β€10π€©5π3π₯2
Adaptive MACD for MetaTrader 5 extends the classic MACD by switching from fixed smoothing to a market-dependent blend. It computes a Pearson correlation between close price and bar index over a configurable window, converts it to RΒ², then uses that value to weight two MACD coefficient sets. Higher trend strength increases responsiveness; lower trend strength increases smoothing.
Output is shown in a separate window with a MACD line, a signal EMA, and a color-coded histogram for MACD minus signal. Histogram states cover strong/weak bullish and bearish momentum, based on sign and whether bars are rising or falling. The MACD line color can auto-adjust for light/dark chart themes or be set manually.
Core inputs include RΒ² length (default 20), fast/slow lengths (10/20), signal length (9), and bull/bear colors plus MACD/signal styling. Usable across instrument...
π Read | Quotes | @mql5dev
Output is shown in a separate window with a MACD line, a signal EMA, and a color-coded histogram for MACD minus signal. Histogram states cover strong/weak bullish and bearish momentum, based on sign and whether bars are rising or falling. The MACD line color can auto-adjust for light/dark chart themes or be set manually.
Core inputs include RΒ² length (default 20), fast/slow lengths (10/20), signal length (9), and bull/bear colors plus MACD/signal styling. Usable across instrument...
π Read | Quotes | @mql5dev
β€12π6π₯3π2π1
Left-side multi-timeframe and trade setup panel updated for faster at-a-glance monitoring.
Header now shows Live status, Symbol, and the current Bid price on a single top row with real-time updates.
Multi-timeframe structure block covers M1, M5, M15, M30, and H1. Each timeframe reports the current state (BOS, CHoCH, or Swing Formed) and prints the exact breakout price for validation.
Setup details are presented vertically, one field per line to reduce clutter: status (Active/Completed), direction (BUY/SELL), entry, stop loss with pip risk, TP1 (1:1), TP2 (1:2), TP3 (1:3), and net pips captured.
π Read | VPS | @mql5dev
Header now shows Live status, Symbol, and the current Bid price on a single top row with real-time updates.
Multi-timeframe structure block covers M1, M5, M15, M30, and H1. Each timeframe reports the current state (BOS, CHoCH, or Swing Formed) and prints the exact breakout price for validation.
Setup details are presented vertically, one field per line to reduce clutter: status (Active/Completed), direction (BUY/SELL), entry, stop loss with pip risk, TP1 (1:1), TP2 (1:2), TP3 (1:3), and net pips captured.
π Read | VPS | @mql5dev
β€13π7π₯4π¨βπ»4π2
Broker Execution Diagnostics is a read-only script for broker specification analysis and execution troubleshooting prior to Expert Advisor configuration or rejected order review. No trades are opened, modified, or closed. The utility reads the active symbol parameters and prints a structured report on the chart and in the Experts log.
Report fields include bid/ask/spread (points), digits and point size, tick size and tick values, contract size and account currencies, volume limits (min/max/step and directional caps), stop and freeze levels, trade and execution modes, supported filling modes and order features, plus terminal/account/EA trading permissions.
Margin and profit estimates are calculated for configurable test volume and price movement using OrderCalcMargin and OrderCalcProfit. Test volume is normalized to the brokerβs min/max/step constraints. Us...
π Read | Calendar | @mql5dev
Report fields include bid/ask/spread (points), digits and point size, tick size and tick values, contract size and account currencies, volume limits (min/max/step and directional caps), stop and freeze levels, trade and execution modes, supported filling modes and order features, plus terminal/account/EA trading permissions.
Margin and profit estimates are calculated for configurable test volume and price movement using OrderCalcMargin and OrderCalcProfit. Test volume is normalized to the brokerβs min/max/step constraints. Us...
π Read | Calendar | @mql5dev
β€13π5π€©4π3π₯2
Risk Based Position Size Calculator is a chart indicator used to plan trade volume before execution. It adds draggable Entry and Stop lines, measures the distance, and outputs a broker-normalized position size for a selected risk level. It does not place orders or manage open positions.
Risk can be set as a percentage of balance, percentage of equity, or a fixed amount in account currency. The calculation uses tick size and tick value, with an optional round-turn commission per lot. Volume is rounded down to the brokerβs volume step to avoid exceeding the configured risk.
The panel shows direction, entry/stop/target, stop distance, risk amount, risk per lot, raw vs normalized volume, reward-to-risk ratio, and validation status. Position sizing remains an estimate due to slippage, gaps, swaps, and execution differences.
π Read | NeuroBook | @mql5dev
Risk can be set as a percentage of balance, percentage of equity, or a fixed amount in account currency. The calculation uses tick size and tick value, with an optional round-turn commission per lot. Volume is rounded down to the brokerβs volume step to avoid exceeding the configured risk.
The panel shows direction, entry/stop/target, stop distance, risk amount, risk per lot, raw vs normalized volume, reward-to-risk ratio, and validation status. Position sizing remains an estimate due to slippage, gaps, swaps, and execution differences.
π Read | NeuroBook | @mql5dev
β€15π€©4π3π¨βπ»2π1
A price envelope indicator built on the Nadaraya-Watson estimator with Gaussian smoothing produces adaptive upper and lower bands that follow current volatility and direction.
Signals are generated when price closes beyond either band, with colored arrows marking upper or lower crossings. The logic is non-repainting, keeping historical arrows and band values fixed after calculation to support consistent review and testing.
Configuration includes bandwidth control, envelope multiplier, and selectable applied price. Visual settings cover band and arrow colors, with a lightweight chart footprint. Compatible across symbols and timeframes and operates without external dependencies.
Use as an analytical component only; market risk remains and results are not guaranteed.
π Read | AlgoBook | @mql5dev
Signals are generated when price closes beyond either band, with colored arrows marking upper or lower crossings. The logic is non-repainting, keeping historical arrows and band values fixed after calculation to support consistent review and testing.
Configuration includes bandwidth control, envelope multiplier, and selectable applied price. Visual settings cover band and arrow colors, with a lightweight chart footprint. Compatible across symbols and timeframes and operates without external dependencies.
Use as an analytical component only; market risk remains and results are not guaranteed.
π Read | AlgoBook | @mql5dev
β€14π10π₯2π€©2π2
Broker Info Panel MT5 adds a compact on-chart panel for viewing broker and symbol trading specifications without switching between platform dialogs.
Displayed data includes live Bid/Ask, spread in points and price, tick size and tick value, min/max lot, volume step, stop level, and freeze level. This is relevant when validating a new broker, symbol, or account type where contract settings often differ.
The tool is read-only: it does not place, modify, or close orders. Visible fields can be enabled or disabled via inputs, and the refresh interval is configurable. No external DLLs or third-party libraries are required.
Installation: copy BrokerInfoPanel.mq5 to MQL5\Indicators, compile in MetaEditor, then attach to any chart. Values are sourced from broker-provided trading specifications and will vary by account and symbol.
π Read | Docs | @mql5dev
Displayed data includes live Bid/Ask, spread in points and price, tick size and tick value, min/max lot, volume step, stop level, and freeze level. This is relevant when validating a new broker, symbol, or account type where contract settings often differ.
The tool is read-only: it does not place, modify, or close orders. Visible fields can be enabled or disabled via inputs, and the refresh interval is configurable. No external DLLs or third-party libraries are required.
Installation: copy BrokerInfoPanel.mq5 to MQL5\Indicators, compile in MetaEditor, then attach to any chart. Values are sourced from broker-provided trading specifications and will vary by account and symbol.
π Read | Docs | @mql5dev
β€13π11π3π¨βπ»2π€©1
Market Session Separator is a chart-only indicator for intraday work that makes session changes explicit without manual time conversion. It renders up to three configurable windows per day using vertical separators, shaded background bands, or both, with optional labels.
Sessions are defined by start/end hours in server time, including overnight ranges where end precedes start. Colors and labels are independent per session, allowing standard Asian/London/New York presets or custom windows such as overlap periods.
Rendering is kept lightweight: no highs/lows or derived values are computed. Session boxes are rebuilt from the chartβs visible price range so they always span the full view while zooming and scrolling.
Operational controls include a rolling days window with automatic pruning, weekend skipping, selectable line style, and clean deinitializat...
π Read | Calendar | @mql5dev
Sessions are defined by start/end hours in server time, including overnight ranges where end precedes start. Colors and labels are independent per session, allowing standard Asian/London/New York presets or custom windows such as overlap periods.
Rendering is kept lightweight: no highs/lows or derived values are computed. Session boxes are rebuilt from the chartβs visible price range so they always span the full view while zooming and scrolling.
Operational controls include a rolling days window with automatic pruning, weekend skipping, selectable line style, and clean deinitializat...
π Read | Calendar | @mql5dev
β€14π9π₯1
Grid and martingale often look profitable in backtests because results are dominated by completed cycles. Profit factor and expected payoff can be positive per cycle while the equity curve trends up.
The failure mode is the same: an unfinished cycle appears when margin, max orders, or trend length breaks assumptions. One large adverse move offsets prior gains and closes the sequence at a net loss.
Simple MT5 EAs with fixed steps (grid) and recursive sizing (martingale) typically reproduce this behavior. Spread and execution costs then push the long-run outcome further negative, even when many cycles finish in profit.
The core math frames both as zero-expectancy without edge on direction, with blow-up risk concentrated in rare tails.
π Read | Freelance | @mql5dev
The failure mode is the same: an unfinished cycle appears when margin, max orders, or trend length breaks assumptions. One large adverse move offsets prior gains and closes the sequence at a net loss.
Simple MT5 EAs with fixed steps (grid) and recursive sizing (martingale) typically reproduce this behavior. Spread and execution costs then push the long-run outcome further negative, even when many cycles finish in profit.
The core math frames both as zero-expectancy without edge on direction, with blow-up risk concentrated in rare tails.
π Read | Freelance | @mql5dev
π2β€1