Have a nice day!
Boris Armenteros
Boris Armenteros
A clean recompile is where an MT4-to-MT5 migration starts, not where it ends. The functions rename, the errors clear, the Strategy Tester runs — and four architecture differences sit underneath, none of which throws an error...
MetaQuotes
MetaQuotes
已添加主题交易者已在 MetaTrader 5 的 AI 助手功能中使用了一万亿个词元
在 MCP 支持和内置 AI 助手正式上线 仅三周后,MetaTrader 5 用户已通过免费的 MQL5 Lite 模型处理了超过一万亿个词元(token)。这标志着新服务迈出了首个重大里程碑式的步伐,凸显出交易者与开发者将人工智能融入日常工作流程的速度之快、采纳之广。  词元是文本的基本单位,人工智能模型通过处理这些词元来理解请求并生成响应。为了更好地理解这个规模,一万亿个词元大约相当于: 7000 亿至 7500 亿个英语单词 假设每页 250 个单词,则文本总量为 25 亿至
Boris Armenteros
Boris Armenteros
If you are migrating from MQL4 or debugging a position management bug you cannot reproduce in Strategy Tester, read this before changing anything else. What the Documentation Actually Says The MQL5 reference for CTrade::PositionClose() is technically accurate. Both overloads are listed...
Boris Armenteros
Boris Armenteros
There is a conversation that repeats often enough to be worth writing down. A trader has traded a setup manually for months, decides to automate it, and frames the project as "turn my rules into an EA." The entry logic gets written in an afternoon...
MetaQuotes
MetaQuotes
已添加主题MetaTrader.com — 您的全球交易中心
当今的交易者常常需依赖数十个不同网站获取信息。 一个网站用于获取新闻资讯。 另一个用于查看图表数据。 第三个用于查阅经济日历。 还有若干个网站则提供交易信号、市场见解、相关文章及交易工具等服务。 如果你需要的一切都能在一个地方找到,那会怎么样? 隆重推出 metatrader.com — 交易者、投资者和 MetaTrader 用户的新目的地。 金融市场一站式服务 主页可让您一览无余地洞悉市场全貌。借助单一平台,追踪美国股票、外汇、指数、金属及大宗商品行情。  可获取超过 11,000
Boris Armenteros
Boris Armenteros
Every EA project starts with a brief. The brief describes entry conditions, exit logic, position sizing, and timeframe. It is usually thorough on paper. In practice, it is almost never complete...
Boris Armenteros
Boris Armenteros
The Failure Pattern Most EA reliability discussions focus on broker edge cases, slippage, and backtest-to-live gaps. The restart failure is quieter — and in my experience, more consistently expensive. The pattern: an EA runs correctly for months on a VPS...
Boris Armenteros
Boris Armenteros
The Problem Three EA rescue projects arrived at barmenteros FX this year with identical symptoms: excellent single-trade backtest results, inconsistent live performance during periods when two or more positions ran simultaneously...
MetaQuotes
MetaQuotes
已添加主题MetaTrader 5 平台更新 Build 6090:总体改进
MetaTrader 5 平台更新将于 2026 年 7 月 31 日星期五发布。 我们对平台的代码进行了全面分析和审核,解决了所有发现的问题,并实施了多项内部优化措施,旨在进一步提升 MetaTrader 5 的稳定性、可靠性和性能。 此外,我们对平台组件进行了多项改进: 程序端:扩展了 AI 助手 能够使用的 MCP 方法集。特别是,它现在可以向图表中添加指标,并获取包含指标参数的可用指标列表。 程序端:修复了错误并改进了内置 AI 助手的功能。 程序端:在 Windows 7 中禁用了
Boris Armenteros
Boris Armenteros
Permission to run an Expert Advisor is not what disqualifies automated prop-firm accounts. Automation permission is not where firms compete — they differentiate on payout splits, drawdown limits, and challenge fees...
Boris Armenteros
Boris Armenteros
The Silent Failure Mode Running two or more expert advisors on the same MetaTrader account exposes a structural gap that single-EA backtesting never reveals. The platform logs no warning when one EA modifies or closes an order it doesn't own...
Boris Armenteros
Boris Armenteros
A PPO agent trained for two million steps on EURUSD 15-minute data with flat reward curves across all five seeds is not an optimizer problem. Switching to SAC will not fix it. Changing the learning rate will not fix it...
Boris Armenteros
Boris Armenteros
Most DRL algorithm comparisons you find in the literature rank models by annualized return. If you plan to deploy the agent on a live MetaTrader account, that is the wrong column to sort on. Here is a benchmark that makes the point concrete...
Boris Armenteros
Boris Armenteros
If you have trained a deep reinforcement learning agent in Python and tried to run it against a live MT5 terminal, you may have seen this: the agent converges cleanly, the backtest Sharpe looks good, and then on a paper account it behaves like it never trained. No error, no warning...
Boris Armenteros
Boris Armenteros
A client asked me to diagnose why his FTMO Phase 1 EA was disqualified on day 9. The strategy was profitable — positive P&L at the point of disqualification. The journal told the story: trades were opening after the daily loss limit had already been breached...
Boris Armenteros
Boris Armenteros
A clean compile tells you the syntax is valid. That is the whole of its claim. It does not tell you that the correct order was selected before the close, that a rejected request was noticed, or that the Expert Advisor still knows what it holds after a terminal restart...
Boris Armenteros
Boris Armenteros
The Pattern A trader runs an EA profitably for months or years. No code changes. No settings modified. The equity curve starts bleeding. The trader backtests — still shows good results. The trader re-optimizes — makes it worse. I have encountered this three times since January 2026...
Boris Armenteros
Boris Armenteros
The client who ran double risk for six weeks Last year I reviewed a client's XAUUSD Expert Advisor. The risk input read 2% per trade. The actual exposure per position was 4.1%. Every trade for six weeks had been roughly double the intended size...
Boris Armenteros
Boris Armenteros
I review AI-generated MQL code regularly in rescue projects. Since 2024, the same three failure patterns appear in the majority of AI-generated EAs. The code compiles clean and backtests well. It fails in production because it misses the conditions that only exist when real money is on the line...
· 1 77 2
Boris Armenteros
Boris Armenteros
The Pattern That Costs You Money Most EA project overruns come from revision cycles, not from complex strategy logic. After 14+ years of building EAs, I have found that specification quality predicts project cost more reliably than strategy complexity. Here is a real pattern...