Скачать Exp Tick Hamster

clp

Скачать CloseIfProfitorLoss (CLP)

Скачать Exp Tick Hamster

clp

Скачать CloseIfProfitorLoss (CLP)

Скачать DEMO Exp The X Universal EA для MetaTrader
Загрузка EXPFOREX

Скачать Exp The X Universal EA

Версия26.605
Загрузки16,229
Последнее обновление26.605 – 6 июня 2026
Скачать Exp The X Universal EA

Download The X Universal EA

Скачать The X Universal EA MT4 MT5 - последнюю версию универсального конструктора стратегий

Скачать Exp The X Universal EA

Получите доступ к защищенному репозиторию, чтобы скачать The X – универсальный **советник** (Expert Advisor) и конструктор стратегий для MetaTrader 4 и 5.
Этот пакет включает последние исполняемые файлы для автоматической торговли с использованием стандартных индикаторов.

Зачем обновляться? Скачивая последнюю версию, вы гарантируете точную логику для всех **21 встроенной стратегии и фильтров** (21 built-in strategies and filters).
Получите последние исправления ошибок и улучшения производительности для настройки стратегий.


Основная информация Руководство Настройки FAQ

Полный список изменений (Changelog) Отзывы пользователей Комментарии Дополнительно


Список изменений (Changelog)

Version 26.222 2026.02.23


: added two new inputs to the Averaging & Additional entries system:
input double MaxLot_Averaging = 0; — Max lot limit for Averaging
input double MaxLot_Additional = 0; — Max lot limit for Additional entries— Average price guide lines 📈: added separate average price lines for Averaging and for Additional entries to improve visual control and decision-making.— Expforex 2026 premium makeover ✨: The X Universal Expert Advisor for standard indicators now ships with the Expforex 2026 visual style (aligned with our new 2026 website) + the interface has been refreshed to look cleaner, tighter, and truly production-ready.— More “alive” controls 🎯: introduced smoother hover and cursor-target reactions on buttons and interactive zones + clearer feedback when you operate quickly.— Lot field refinement 💎: upgraded the Lot input for easier editing + improved readability and a stronger focus highlight while changing values.
— Touch-first usability 📱: added an on-screen numeric keypad for the Lot field + adjust lot size directly from the keypad without needing a physical keyboard.
— Testing workflow upgrade 🧪: improved the interaction flow for test runs where typing is inconvenient + quicker lot adjustments during scenarios.

: compiled using MetaTrader terminal build 5640.
— Internal optimization 🛠️: refactored and cleaned up the codebase to improve stability, simplify maintenance, and speed up future updates.
— Finishing pass 🎨: aligned spacing, typography, and UI consistency across the panel to reduce visual noise and keep the focus on execution.

Version 25.977 2025.12.03

🛠 MetaQuotes VPS — Panel Features Recovered
-Panel functionality has been re-enabled and is working properly on MetaQuotes VPS.
-The main switches are active again: Stop Trading, Modify Only, Telegram notifications, Push alerts.
🎨 MT5 — UI Rendering Improvements
-Refined the way MetaTrader 5 draws the interface to improve visual consistency and stability.
-Added internal compatibility tweaks in preparation for the next MT5 graphical engine rollout.
🔤 Cross-Platform Font Adjustment
-Updated the panel font from Roboto to Tahoma for a cleaner, more predictable look.
-Tahoma is universally supported in Windows, so text displays correctly on all versions.
📏 Strategy Tester — Smart Resizing
-Enabled Auto-Resize support for the panel inside the Strategy Tester.
-Panel interaction during backtests is now more comfortable and practical.
🐞 Maintenance Updates
-Fixed minor issues and small UI mismatches.
-Improved internal performance and overall stability.
-Rebuilt using the latest terminal build to ensure maximum compatibility.

Version 25.902 2025.08.25

EAPADPRO v64

Version 25.901 2025.08.25

WHAT’S NEW — CUSTOM OPTIMIZATION CRITERION (USER GUIDE)
This feature is for Strategy Tester optimization in MetaTrader 5. It does not change live trading behavior. It helps the Tester pick the best parameters by a number YOU define.
WHAT IT IS & WHY IT MATTERS
During optimization, the Tester ranks results by a single number (criterion). Usually that’s profit, drawdown, etc.Now you can provide your own number with a simple formula, so you decide what “best” means (e.g., maximize profit while penalizing drawdown, reward more trades, prefer higher Profit Factor, etc.).
Example idea:
STAT_PROFIT / (STAT_EQUITY_DD + 1)
WHAT’S NEW
String input “OnTester_Custom_max” to define a custom ranking formula.
Full expression support:
Operators: + - * /
Precedence: * and / before + and -
Parentheses: ( )
Unary minus: -X
Numeric constants: 1, 0.5, 10.0
No limits on formula length or number of metrics used.
All TesterStatistics variables supported (incl. STAT_COMPLEX_CRITERION).
Formula normalization: spaces/tabs and case handled automatically.
Optional pre-filters before calculation (min trades, min profit, max drawdown, min Profit Factor, etc.) to discard invalid runs early.
Improved logs: original formula, normalized expression, final score.
Safe division policy by default (division by zero returns 0.0; can be changed in code if desired).
Note: OnTester() affects only optimization ranking. It does not change the EA’s live trading logic.
WHERE TO FIND IT IN METATRADER 5
Open Strategy Tester (Ctrl+R).
Select the EA, symbol, timeframe, dates, deposit.
Enable Optimization.
Set Optimization Criterion:
Custom max (to maximize your formula), or
Custom min (to minimize it).
In Inputs, find the string parameter: OnTester_Custom_max — enter your formula here.
(Optional) Set filters in Inputs to prune junk runs:
OnTester_Min_Trades
OnTester_Min_Profit
OnTester_Min_Balance / OnTester_Min_Equity
OnTester_Max_Balance_DD / OnTester_Max_Equity_DD (percent)
OnTester_Min_ProfitFactor
After runs finish, the “Custom” column equals your returned value (STAT_CUSTOM_ONTESTER).
HOW TO WRITE A FORMULA (SYNTAX)
Allowed operators: + - * /
Precedence: * and / before + and -
Parentheses supported: ( )
Unary minus supported: -STAT_PROFIT
Spaces and case are ignored
Use numeric constants freely: 0.5, 10, 1000
Common variables:
STAT_PROFIT Net profit
STAT_TRADES Number of trades
STAT_EQUITY_DD Max equity drawdown (money)
STAT_EQUITYDD_PERCENT Max equity drawdown (%)
STAT_BALANCE_DD Max balance drawdown (money)
STAT_PROFIT_FACTOR Profit Factor
STAT_EXPECTED_PAYOFF Expected payoff per trade
STAT_RECOVERY_FACTOR Profit / balance drawdown
Tip: Protect denominators to avoid division by zero, e.g. /(X + 1) or /(X + 0.0001).
READY-TO-PASTE PRESETS (EXAMPLES)
Balanced profit vs. drawdown (money):
STAT_PROFIT / (STAT_EQUITY_DD + 1)
Reward activity while controlling risk:
STAT_PROFIT * STAT_TRADES / (STAT_EQUITY_DD + 1)
Quality-focused (expected payoff and PF), normalized by % risk:
STAT_EXPECTED_PAYOFF * STAT_PROFIT_FACTOR / (1 + STAT_EQUITYDD_PERCENT)
Strong penalty for large risk (quadratic):
STAT_PROFIT - 0.1 * (STAT_EQUITY_DD * STAT_EQUITY_DD)
Classic:
STAT_RECOVERY_FACTOR
Choose “Custom max” in Optimization Criterion for all examples above (unless you specifically need to minimize your metric).
HOW TO ENABLE & USE (STEP-BY-STEP)
Set reasonable filters first (e.g., OnTester_Min_Trades, OnTester_Max_Equity_DD) to discard poor runs.
Enter your formula in OnTester_Custom_max.
Select Optimization Criterion = Custom max (or Custom min if you really want to minimize the metric).
Run optimization (Genetic recommended).
Sort results by “Custom” — this is your score.
Open top 5–10 runs and check secondary stats (drawdown, PF, number of trades).
Run Forward testing on finalists to verify robustness and avoid overfitting.
BEST PRACTICES
Scale your metric sensibly (avoid extremely large/small values).
Keep units consistent when mixing money and percentages (normalize when needed).
Use penalties for risk (e.g., quadratic in drawdown) to discourage extreme settings.
If many scores are zero, loosen filters or check variable names and denominators.
Division by zero policy can be customized in code (0.0 by default; change to DBL_MAX or a large constant if preferred).
FAQ
Q: Does this affect live trading?
A: No. It only changes how the Tester ranks optimization runs.
Q: “Custom” is always zero. Why?
A: Usually too-strict filters, division by zero, or a typo in a variable name. Simplify filters and double-check the formula.
Q: Custom max or Custom min?
A: Typically Custom max. Use Custom min only if your formula is an error/risk/cost you want to minimize.
Q: Can I use numbers in formulas?
A: Yes (e.g., 0.5, 10, 1000). Example: STAT_PROFIT - 0.05 * STAT_EQUITY_DD
SUMMARY
Define your goal as a single number, let the Tester search for parameters that optimize your own definition of “best,” and verify the winners with forward testing for stability.

Version 25.201 2025.02.02

EAPADPRO v64

Version 25.111 2025.01.15

EAPADPRO v61
We are excited to introduce new languages to our functionality. Users can now enjoy an even wider range of language options for their convenience and comfort. Here’s the list of newly added languages:
THAI=12 — Thai
INDI=13 — Hindi
MALAY=14 — Malay
INDONEZIA=15 — Indonesian
ARAB=16 — Arabic
VETNAM=17 — Vietnamese
BALKAN=20 — Balkan
POLAND=21 — Polish
CHEZH=22 — Czech
Update your application and enjoy working in your native language! ????
-Fixed the error excessive use of disk space when optimizing Expert in MQL5 CLOUD NETWORK
-Performance improvements and fixes based on crash logs.

Version 24.978 2024.11.04

--Solution to the problem with downloading advisors from the market. MQL4 Market: failed download product ' ' [500]
--EAPADPRO v60
--Added Language for links;
--Recompiled in last build of MetaTrader;

Version 24.977 2024.11.04

EAPADPRO v60
Added Language for links;
Recompiled in last build of MetaTrader;

Версия26.605

Этот пост также доступен на следующих языках: English Portuguese Español Deutsch Français Русский Українська Indonesian Italiano العربية Chinese 日本語 한국어 Türkçe ไทย Tiếng Việt


    Пожалуйста, подождите, идет связь с ИИ...

     

    Предупреждение о риске:


    Прошлые торговые показатели не гарантируют будущих результатов.

    Маржинальная торговля иностранной валютой сопряжена с высокой степенью риска и может не подходить для всех инвесторов.

    Имейте в виду, что использование торговых роботов сопряжено с существенным риском, и Вы можете потерять больше, чем Ваши первоначальные инвестиции.

    Пожалуйста, действуйте с осторожностью, тщательно оценивайте свою финансовую ситуацию и обратитесь за советом к квалифицированному специалисту.

    Отказ от ответственности

    Follow Expforex