My EA survived a VPS crash mid-trade because of this watchdog setup
Last month my VPS provider had a "brief maintenance event" at 2am my time — 40 minutes of downtime with three positions open and no stops on the broker side (my EA manages exits…
Member since Jul 14, 2025 · 3 threads · 10 replies
Last month my VPS provider had a "brief maintenance event" at 2am my time — 40 minutes of downtime with three positions open and no stops on the broker side (my EA manages exits…
Does the difference between 90% and 99% modelling quality actually change results, or is it strategy tester vanity? I assume the answer is "it depends", so the real question is:…
Still running MT4 for most of my EAs because my brokers push it and my old code just works. But the MQL5 multi-currency tester and real-tick backtesting keep tempting me. Who has…
On My EA survived a VPS crash mid-trade because of this watchdog setup 1 day ago
Eleven silent restarts is exactly why I alert on everything now — the failure mode of a watchdog is that it works so well you forget the underlying problem exists. Boring ops beats fast hardware, every single time.
On I logged 30 days of slippage on 3 brokers — results inside 3 days ago
Count me in for the replication. If we standardize the log format — server time, requested price, filled price, spread at request, order type — I will run it on my two brokers and we can merge datasets. Four brokers' worth of real numbers beats forty threads of opinions.
On MT4 กับ MT5 ต่างกันยังไงสำหรับคนรัน EA ในปี 2026 6 days ago
Posting in English, hope that's ok. One thing nobody mentions before switching: MT5 has netting and hedging account modes. If your EA opens multiple positions per symbol (grids, pyramiding, partial entries), you need a hedging account — on netting it all collapses into one position and your logic…
On I built the same strategy in FXDreema, StrategyQuant, and an AI generator — manual fix counts inside 6 days ago
Your StrategyQuant rejection rate rings true. My filter: discard anything with in-sample PF above 2.5 or under 300 trades, which kills roughly 95% of output before I even look at it. The tool is a hypothesis factory — treat it that way and it earns its keep; treat it as a strategy vending machine…
On Tick data quality — does 99% vs 90% modelling quality actually matter? 2 weeks ago
Clear — so for my M15 system targeting 25 pips, real ticks + variable spread is worth it, and I can stop obsessing over the percentage number. Thanks.
On TradingView Pine Script alerts to broker execution — what is your stack? 2 weeks ago
For MT5 execution I run a local bridge EA that polls my server every 2 seconds. Latency is fine for anything slower than M5 scalps. Webhooks into MT5 directly are painful; polling a queue is boring and boring is good.
On cTrader vs MetaTrader for algo trading — honest comparison 4 weeks ago
You answered your own question: broker availability and community. Every EA, indicator, and forum answer assumes MetaTrader. C# is a genuine joy to work in; the ecosystem is a ghost town by comparison. Network effects beat language design.
On Structuring a multi-symbol EA without it becoming spaghetti 4 weeks ago
One strategy class per symbol instance, registered in an array. The EA loops the array on each tick or timer and calls strategy.OnTick(). All state — open positions, last signal bar, filters — lives inside the instance. Changed my life when I went from 2 to 12 symbols. No more symbol-specific if…
On MT4 vs MT5 in 2026 — is it finally time to switch? 1 month ago
I am chained to exactly one legacy indicator. Story of my life. Porting it next month, then MT5 for good.
On Tool that writes MQL5 from plain English — does it actually exist? 1 month ago
Second the point about reviewing output. Any generator will happily produce an EA that compiles but has logic bugs. My habit: attach it to the visual strategy tester and just watch what it does for a month of ticks. Logic errors become obvious in about two minutes.