On I logged 30 days of slippage on 3 brokers — results inside 1 month 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 1 month 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 cTrader vs MetaTrader for algo trading — honest comparison 2 months 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 2 months 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…