[{"data":1,"prerenderedAt":1136},["ShallowReactive",2],{"\u002Fglossary\u002Fwhat-is-an-expert-advisor":3,"\u002Fglossary\u002Fwhat-is-an-expert-advisor-related":244},{"id":4,"title":5,"body":6,"category":229,"date":230,"description":231,"draft":232,"extension":233,"meta":234,"navigation":232,"path":235,"related":236,"seo":241,"stem":242,"term":161,"updated":230,"__hash__":243},"glossary\u002F5.glossary\u002Fwhat-is-an-expert-advisor.md","What Is an Expert Advisor? EAs in MetaTrader Explained",{"type":7,"value":8,"toc":221},"minimark",[9,19,24,27,38,41,54,62,66,69,82,86,101,121,124,128,136,163,181,185,213],[10,11,12,13,18],"p",{},"An Expert Advisor, or EA, is a program written in MetaQuotes' MQL language that runs inside a ",[14,15,17],"a",{"href":16},"\u002Fglossary\u002Fwhat-is-metatrader","MetaTrader"," terminal and can open, modify and close orders without anyone at the keyboard. It is attached to a single chart, reacts to the price ticks arriving there, and applies the rules it was compiled with. An EA is a way of executing a strategy, not a strategy that works.",[20,21,23],"h2",{"id":22},"how-it-works","How it works",[10,25,26],{},"You compile the code, drop it on a chart, and the terminal calls it every time the market moves.",[28,29,34],"pre",{"className":30,"code":32,"language":33},[31],"language-text","Price tick arrives on the chart\n  → the EA's tick handler runs\n  → rules are evaluated against price, indicators and open positions\n  → an order is sent, stamped with a magic number\n  → the broker's trade server accepts, rejects or requeues it\n","text",[35,36,32],"code",{"__ignoreMap":37},"",[10,39,40],{},"Three conditions must hold at once: the terminal is running and logged in, automated trading is permitted, and the broker accepts the request. Break one and the EA keeps running silently while placing nothing.",[10,42,43,44,48,49,53],{},"The critical detail is that an EA is ",[45,46,47],"strong",{},"client-side",": it is a guest process inside a program running on a machine you own. The broker's server holds nothing of it except a stop loss or take profit already attached to an open position. Close the terminal and the code is simply not there any more, which is why an unattended strategy belongs on a ",[14,50,52],{"href":51},"\u002Fglossary\u002Fwhat-is-a-vps","VPS"," rather than a laptop that sleeps.",[10,55,56,57,61],{},"Each order the EA sends carries a ",[14,58,60],{"href":59},"\u002Fglossary\u002Fwhat-is-a-magic-number","magic number",", the integer that lets several EAs share one account and still be read apart afterwards.",[20,63,65],{"id":64},"why-it-matters","Why it matters",[10,67,68],{},"An EA removes hesitation, fatigue and the 3 a.m. problem. It also removes the judgement that would have switched it off. An EA has no idea that its edge stopped working; it will execute a broken rule set with exactly the same discipline it executed a good one.",[10,70,71,72,76,77,81],{},"Consistency of execution is the benefit on offer. Consistency is not profitability, and the gap between the two is where most automated money is lost. A strategy that looks flawless in the tester has usually been fitted to the sample it was tested on — see ",[14,73,75],{"href":74},"\u002Fglossary\u002Fwhat-is-curve-fitting","curve fitting"," — which is why a broker-synced account outranks any ",[14,78,80],{"href":79},"\u002Fglossary\u002Fwhat-is-backtesting","backtest"," report. The tester shows what the code did to history; the account shows what the code, the broker and the machine did to money together.",[20,83,85],{"id":84},"what-the-data-shows","What the data shows",[10,87,88,89,92,93,96,97,100],{},"Automation is the default here, not a niche. Across the public accounts on ShowMyTrades with trading history (August 2026), the ",[45,90,91],{},"median autotrading share is 99%",", ",[45,94,95],{},"53.9% of accounts are more than 90% automated"," and ",[45,98,99],{},"42.2% sit under 10%",". Two clusters, almost nothing between them: an account here is run either entirely by code or entirely by hand.",[10,102,103,104,112,113,116,117,120],{},"Automation did not flatten the outcomes. The same population shows a ",[45,105,106,107,111],{},"median ",[14,108,110],{"href":109},"\u002Fglossary\u002Fwhat-is-a-profit-factor","profit factor"," of 1.28",", a ",[45,114,115],{},"median deepest drawdown of 9.7%",", and a long left tail: ",[45,118,119],{},"38.2% of accounts have been more than 20% under water, 17.6% more than 50%",". Running a strategy by code changes who presses the button, not what the strategy is worth.",[10,122,123],{},"One boundary we hold to: we never estimate which commercial EA is running on an account. The same product installs with a different magic number on every account that buys it, so nothing in the broker feed identifies software, and a guess published as a fact would be worse than no answer.",[20,125,127],{"id":126},"where-you-see-it-on-showmytrades","Where you see it on ShowMyTrades",[10,129,130,131,135],{},"The account header carries a badge reading the automation split — for example ",[132,133,134],"em",{},"99% autotrading",". It is not self-declared: a trade counts as automated when it arrives carrying a non-zero magic number, so the badge is a tally of the EA's own fingerprints on the order flow.",[10,137,138,139,142,143,146,147,150,151,154,155,158,159,162],{},"On an Expert Advisor connection, the ",[45,140,141],{},"Terminal & Open Charts"," module (",[45,144,145],{},"Terminal"," on MT4, whose EA does not report a chart list) shows the environment the code lives in, including ",[45,148,149],{},"Auto trading"," reading ",[132,152,153],{},"Allowed"," or ",[132,156,157],{},"Blocked"," — the one switch that silently stops an otherwise healthy EA from placing anything. Below the tiles, the open charts table names the ",[45,160,161],{},"Expert Advisor"," loaded on each chart with its symbol, timeframe and indicators: what is running, rather than what is claimed. A password-only Direct Connection never touches your machine, so it reports none of this.",[10,164,165,166,169,170,173,174,180],{},"Per-strategy results live in the ",[45,167,168],{},"Breakdown Statistics"," module, under the ",[45,171,172],{},"By Magic Number"," tab, where each EA gets its own row of trades, profit and won\u002Flost split. The ",[14,175,177],{"href":176},"\u002Fguides\u002Fcustom-analysis-and-filter-presets",[45,178,179],{},"Custom Analysis"," slideover narrows every statistic on the page to a single magic number, isolating one EA.",[20,182,184],{"id":183},"common-misunderstandings","Common misunderstandings",[186,187,188,195,201,207],"ul",{},[189,190,191,194],"li",{},[45,192,193],{},"\"The EA is the strategy.\""," The EA is the executor. Two EAs implementing the same rules produce the same trades; the rules are what has value.",[189,196,197,200],{},[45,198,199],{},"\"A great backtest means a great EA.\""," It means the code and the history agree. That is the minimum requirement, not evidence.",[189,202,203,206],{},[45,204,205],{},"\"Auto trading is on, so it is trading.\""," Permission is not activity: with the AutoTrading button off the EA still loads and runs, it simply cannot send orders. Accounts go quiet this way for weeks.",[189,208,209,212],{},[45,210,211],{},"\"It runs while my computer is off.\""," It does not. Only the server-held stop loss and take profit survive a terminal that is down.",[10,214,215,216,220],{},"For the specific tells that separate a real automated record from a manufactured one: ",[14,217,219],{"href":218},"\u002Fguides\u002Fspotting-fake-ea-results","how to spot fake EA results",".",{"title":37,"searchDepth":222,"depth":222,"links":223},2,[224,225,226,227,228],{"id":22,"depth":222,"text":23},{"id":64,"depth":222,"text":65},{"id":84,"depth":222,"text":85},{"id":126,"depth":222,"text":127},{"id":183,"depth":222,"text":184},"Automation","2026-08-19T00:00:00.000Z","An Expert Advisor is a program that trades inside MetaTrader on your behalf. What it can do, what it cannot, and how automated the accounts published here are.",true,"md",{},"\u002Fglossary\u002Fwhat-is-an-expert-advisor",[237,238,239,240],"what-is-metatrader","what-is-a-magic-number","what-is-a-vps","what-is-backtesting",{"title":5,"description":231},"5.glossary\u002Fwhat-is-an-expert-advisor","2d9v7b7Bxd9O_dMQs14Asam5zM2qY1_3PnoVl22PW6U",[245,455,630,854],{"id":246,"title":247,"body":248,"category":229,"date":230,"description":447,"draft":232,"extension":233,"meta":448,"navigation":232,"path":59,"related":449,"seo":452,"stem":453,"term":366,"updated":230,"__hash__":454},"glossary\u002F5.glossary\u002Fwhat-is-a-magic-number.md","What Is a Magic Number in MT4 and MT5?",{"type":7,"value":249,"toc":440},[250,259,261,264,270,273,293,296,298,305,308,310,318,341,343,372,405,407,433],[10,251,252,253,255,256,258],{},"A magic number is an integer that an ",[14,254,161],{"href":235}," writes onto every order it sends, and that ",[14,257,17],{"href":16}," carries for the life of the trade. It exists so that several strategies can share one account and still be told apart afterwards. Trades placed by hand carry zero.",[20,260,23],{"id":22},[10,262,263],{},"The number is a parameter of the order-sending call, set by the code, not by the broker or the platform.",[28,265,268],{"className":266,"code":267,"language":33},[31],"MT4:  OrderSend(symbol, cmd, lots, price, slip, sl, tp, comment, magic, ...)\nMT5:  request.magic = 55566;   → carried onto the position and every deal\nManual click:  magic = 0\n",[35,269,267],{"__ignoreMap":37},[10,271,272],{},"Three properties follow from that, and all three catch people out.",[186,274,275,281,287],{},[189,276,277,280],{},[45,278,279],{},"Nothing validates it."," No component checks the value for uniqueness or meaning. Two EAs configured with the same integer are merged permanently in the record, and each one will treat the other's positions as its own to manage.",[189,282,283,286],{},[45,284,285],{},"Zero is a real value, not an empty one."," It is what a manual click carries, and also what any EA whose magic input was never changed from its default carries, so the two become the same thing.",[189,288,289,292],{},[45,290,291],{},"It cannot be added later."," The value is fixed the moment the request leaves the terminal and stored with the trade; history that arrived as zero remains zero for good.",[10,294,295],{},"Other platforms express the same idea in a different field: a cBot on cTrader writes a text label, TradeLocker attaches a strategy id to the order, and a numeric one is read here as a magic number. In practice the per-strategy split is MT4 and MT5 territory.",[20,297,65],{"id":64},[10,299,300,301,304],{},"Run three strategies on one account and every headline number on the page is a blend. ",[14,302,303],{"href":109},"Profit factor",", win rate, drawdown and the equity curve are all computed on the merged stream, so a strategy that loses steadily can sit inside a winning total for months without ever showing up as a line on any chart. The account looks healthy because, in aggregate, it is.",[10,306,307],{},"The magic number is the only field that survives that merge. Set properly, your history arrives already split into separate track records you can compare, size differently or retire one at a time. Set carelessly, no analysis performed afterwards can reconstruct it.",[20,309,85],{"id":84},[10,311,312,313,96,315,317],{},"This one field carries more weight here than most owners realise, because the automation figure on every account page is computed from it: a trade is counted as automated when it arrives with a non-zero magic number, or with a strategy label on the platforms that use one instead. Across the public accounts on ShowMyTrades with trading history (August 2026) the ",[45,314,91],{},[45,316,95],{},", which is the same statement as saying nearly every order on those accounts turned up already tagged.",[10,319,320,321,324,325,329,330,334,335,96,338,220],{},"The reason to label early is sample size. The ",[45,322,323],{},"median account has 171 closed trades",". Split across three strategies that is roughly fifty-seven each, below the point where ",[14,326,328],{"href":327},"\u002Fguides\u002Fwin-rate-is-not-an-edge","a win rate"," or a profit factor carries information. Tagging from the first order is what gets each strategy to a readable sample before you have to make a decision about it. The alternative — ",[14,331,333],{"href":332},"\u002Fguides\u002Ftracking-multiple-accounts-portfolio","one account per strategy"," — is common here too: ",[45,336,337],{},"699 users run more than one account",[45,339,340],{},"429 across more than one broker",[20,342,127],{"id":126},[10,344,345,346,348,349,352,353,355,356,359,360,363,364,367,368,371],{},"The ",[45,347,168],{}," module — listed as ",[132,350,351],{},"Currency Pair Statistics"," in your account settings — carries a ",[45,354,172],{}," tab next to ",[132,357,358],{},"By Symbol",", which appears as soon as the account has closed trades to break down. Each row shows ",[45,361,362],{},"EA \u002F Strategy",", the raw ",[45,365,366],{},"Magic Number",", trades, profit, and won\u002Flost counts with percentages. The row for magic 0 is labelled ",[45,369,370],{},"Manual",", and it is the one row that cannot be renamed: it is not a strategy, it is everything that arrived untagged.",[10,373,345,374,376,377,380,381,384,385,388,389,393,394,397,398,154,401,404],{},[45,375,362],{}," cell is editable in place, which is how 55566 becomes a name you will still recognise in six months. Those names then follow the data: the ",[45,378,379],{},"Closed Trades"," table under ",[45,382,383],{},"Trade History & Balance Progression"," offers a ",[45,386,387],{},"Magic"," column carrying the raw integer per ticket, and the ",[14,390,391],{"href":176},[45,392,179],{}," slideover has a ",[45,395,396],{},"Magic Numbers"," filter whose chips read ",[132,399,400],{},"Manual (0)",[132,402,403],{},"Label - 55566",". Select one and every statistic on the page is recomputed for that strategy alone.",[20,406,184],{"id":183},[186,408,409,415,421,427],{},[189,410,411,414],{},[45,412,413],{},"\"I will set magic numbers later.\""," Later does not exist. The field is written at order time and past trades cannot be re-tagged.",[189,416,417,420],{},[45,418,419],{},"\"My EA handles it automatically.\""," Only if the input was changed. A default of 0 is common and silently merges the EA with your manual trades.",[189,422,423,426],{},[45,424,425],{},"\"Manual means I traded by hand.\""," The manual row is the untagged bucket: hand-placed trades plus every EA left at zero.",[189,428,429,432],{},[45,430,431],{},"\"The magic number tells you which robot it is.\""," It tells you nothing. 55566 is whatever the author typed.",[10,434,435,436,220],{},"The full workflow, from naming a strategy to finding the one quietly losing money: ",[14,437,439],{"href":438},"\u002Fguides\u002Fmagic-numbers-and-strategy-labels","magic numbers and strategy labels",{"title":37,"searchDepth":222,"depth":222,"links":441},[442,443,444,445,446],{"id":22,"depth":222,"text":23},{"id":64,"depth":222,"text":65},{"id":84,"depth":222,"text":85},{"id":126,"depth":222,"text":127},{"id":183,"depth":222,"text":184},"A magic number is the integer an Expert Advisor stamps on every order it opens, so one account can hold several strategies and still be read one by one.",{},[450,237,451,240],"what-is-an-expert-advisor","what-is-a-profit-factor",{"title":247,"description":447},"5.glossary\u002Fwhat-is-a-magic-number","Ia1tACbSKWH8AUhr-ic4ZHFe0wTge4PR_HDhPLl1iSY",{"id":456,"title":457,"body":458,"category":621,"date":230,"description":622,"draft":232,"extension":233,"meta":623,"navigation":232,"path":51,"related":624,"seo":627,"stem":628,"term":52,"updated":230,"__hash__":629},"glossary\u002F5.glossary\u002Fwhat-is-a-vps.md","What Is a VPS in Trading? Why Uptime Decides Results",{"type":7,"value":459,"toc":614},[460,466,468,471,477,480,483,491,493,499,502,504,517,520,522,561,571,579,581,607],[10,461,462,463,465],{},"A VPS, or virtual private server, is a slice of a physical machine in a datacentre that you rent and use like a remote computer. In trading it has one job: run your ",[14,464,17],{"href":16}," terminal continuously, on a connection that does not drop, in a building close to your broker's trade server. For an automated strategy it is not an optimisation — it is the environment the strategy actually lives in.",[20,467,23],{"id":22},[10,469,470],{},"You connect to the VPS over remote desktop, install the terminal there, log in and leave it running. Your own laptop can then be closed, updated or thrown away without the strategy noticing. The two things you are buying are uptime and physical proximity to the trade server, and the second one is measurable as round-trip latency.",[28,472,475],{"className":473,"code":474,"language":33},[31],"Ping = terminal → trade server → terminal, round trip\n",[35,476,474],{"__ignoreMap":37},[10,478,479],{},"There is no official threshold for a good number, and the one that matters is relative: the same figure that is unremarkable for a strategy holding positions for days is disqualifying for one working the spread. What is not arguable is the direction — as the round trip grows, fills arrive further from the price the strategy asked for.",[10,481,482],{},"What happens when the terminal goes down mid-position is the part people get wrong. In MetaTrader, a stop loss or take profit attached to an open position is held by the broker's server, so it still triggers with the terminal off. Everything else is client-side and stops dead: new entries, trailing stops, partial closes, break-even moves, virtual stops the Expert Advisor keeps in memory, grid and recovery logic. A martingale system that loses its terminal halfway through a sequence does not pause — it holds an unmanaged basket until the terminal comes back, and the position it would have opened to balance the book never exists.",[10,484,485,486,490],{},"Latency and packet loss matter for a separate reason: they widen the gap between the price your EA decided on and the price it received. That gap is ",[14,487,489],{"href":488},"\u002Fglossary\u002Fwhat-is-slippage","slippage",", and no amount of strategy tuning trades around it.",[20,492,65],{"id":64},[10,494,495,496,498],{},"An automated strategy's live result is the strategy plus its execution environment. Two accounts running identical code on different machines produce different curves, and the difference belongs to ping, uptime and fill quality rather than to logic. This is one of the reasons ",[14,497,80],{"href":79}," results overstate live performance: a backtest never disconnects, never misses a bar, and always fills at the modelled price.",[10,500,501],{},"It also matters for anyone reading someone else's record. A track record produced on a 40 ms VPS is not reproducible on a home laptop with 300 ms ping and nightly Windows updates, even with the same EA and the same broker.",[20,503,85],{"id":84},[10,505,506,507,509,510,512,513,516],{},"Automation is the norm on our platform, not the exception. Across the public accounts on ShowMyTrades with trading history (August 2026), the ",[45,508,91],{},", and ",[45,511,95],{},". The distribution is barbell-shaped: another ",[45,514,515],{},"42.2% are under 10% automated",", with very little in between. Traders are either fully hands-off or fully manual.",[10,518,519],{},"More than half of the accounts publishing results here therefore depend on a terminal that has to stay up, connected, and permitted to trade — across 703 distinct broker servers and 15,436,464 synchronised trades.",[20,521,127],{"id":126},[10,523,345,524,526,527,533,534,537,538,92,541,544,545,96,547,550,551,92,554,154,557,560],{},[45,525,141],{}," module on the account page reports the live state of the machine the strategy runs on: ",[14,528,530],{"href":529},"\u002Fglossary\u002Fwhat-is-terminal-ping",[45,531,532],{},"Ping"," to the trade server, ",[45,535,536],{},"Retransmission"," (the share of network packets that had to be sent again), ",[45,539,540],{},"Terminal build",[45,542,543],{},"Memory"," of the host machine, and whether ",[45,546,149],{},[45,548,549],{},"DLL imports"," are allowed. A connection badge reads ",[132,552,553],{},"Connected",[132,555,556],{},"No trade server",[132,558,559],{},"Offline",", next to how long ago the terminal last reported, and the header counts how many of your terminals are online.",[10,562,563,564,568,569,220],{},"Below it, the open charts table lists each chart with its symbol, timeframe, ",[14,565,566],{"href":235},[45,567,161],{}," and indicators — so you can see what is actually loaded, not what is claimed. In the account header, a badge shows the automation split read from the trades themselves, for example ",[132,570,134],{},[10,572,573,574,578],{},"This is also what a ",[14,575,577],{"href":576},"\u002Fglossary\u002Fwhat-is-a-verified-track-record","verified track record"," looks like when it is honest about its own conditions: the numbers and the environment that produced them, on the same page.",[20,580,184],{"id":183},[186,582,583,589,595,601],{},[189,584,585,588],{},[45,586,587],{},"A VPS does not make a strategy profitable."," It removes missed executions and downtime. If the edge is not there, a faster machine loses money more reliably.",[189,590,591,594],{},[45,592,593],{},"Ping to a website is not ping to the trade server."," The number that matters is the round trip to your broker's server, which is what the terminal reports — a VPS in the wrong city can be slower than your desk.",[189,596,597,600],{},[45,598,599],{},"Low latency does not eliminate slippage."," Spread, liquidity and the broker's execution model still apply. A VPS removes your share of the delay, not theirs.",[189,602,603,606],{},[45,604,605],{},"\"My PC never crashes\" is not the claim being made."," Windows updates, sleep settings, ISP outages and power cuts all disconnect a terminal, and each one happens at a random moment relative to your open positions.",[10,608,609,610,220],{},"To read the rest of an account page with the same scepticism: ",[14,611,613],{"href":612},"\u002Fguides\u002Freading-a-trading-account-dashboard","how to read a trading account dashboard",{"title":37,"searchDepth":222,"depth":222,"links":615},[616,617,618,619,620],{"id":22,"depth":222,"text":23},{"id":64,"depth":222,"text":65},{"id":84,"depth":222,"text":85},{"id":126,"depth":222,"text":127},{"id":183,"depth":222,"text":184},"Platforms","A VPS is an always-on rented server that keeps your trading terminal running and connected when your own computer sleeps, reboots or loses its connection.",{},[625,626,240],"what-is-a-verified-track-record","what-is-slippage",{"title":457,"description":622},"5.glossary\u002Fwhat-is-a-vps","I4TIf563St5m6tF3Pb_5h1pPDQHp1v7OdG4YiQx2XLQ",{"id":631,"title":632,"body":633,"category":844,"date":230,"description":845,"draft":846,"extension":233,"meta":847,"navigation":232,"path":79,"related":848,"seo":850,"stem":851,"term":852,"updated":230,"__hash__":853},"glossary\u002F5.glossary\u002Fwhat-is-backtesting.md","What Is Backtesting? Definition, Limits and Live Data",{"type":7,"value":634,"toc":837},[635,638,640,643,649,652,681,687,689,692,695,697,708,730,741,748,753,755,763,787,797,799,830],[10,636,637],{},"Backtesting is the simulation of a trading strategy against historical price data to estimate how it would have performed. It produces an equity curve, a profit factor and a drawdown figure without a single order ever reaching a broker. Those outputs are a hypothesis about the strategy, not a record of it.",[20,639,23],{"id":22},[10,641,642],{},"The tester replays historical bars or ticks, applies the strategy's entry and exit rules to each one, and records a simulated fill. Everything that separates the simulation from reality lives in the cost and fill model:",[28,644,647],{"className":645,"code":646,"language":33},[31],"Net result per trade = Gross P&L − spread − commission − swap − slippage\n\nSpread cost  = spread (in price) × contract size × lots\nSwap         = swap rate × lots × nights held\n",[35,648,646],{"__ignoreMap":37},[10,650,651],{},"Three settings decide how honest the output is:",[186,653,654,660,671],{},[189,655,656,659],{},[45,657,658],{},"Modelling quality."," MT4 and MT5 report it as a percentage. \"Every tick\" interpolates from 1-minute bars unless you supply real tick data; \"control points\" and \"open prices only\" are approximations that flatter intrabar strategies badly.",[189,661,662,665,666,670],{},[45,663,664],{},"Spread assumption."," Most testers default to a fixed spread. Live spread widens at the rollover, on news and at the session open — exactly the moments many systems trade. A ",[14,667,669],{"href":668},"\u002Fglossary\u002Fwhat-is-a-spread","spread"," modelled at 0.8 pips and paid at 4.0 pips is a different strategy.",[189,672,673,676,677,680],{},[45,674,675],{},"Slippage and fill logic."," The tester assumes your order is filled at the requested price. ",[14,678,679],{"href":488},"Slippage",", rejected orders, requotes and partial fills do not exist in it.",[10,682,683,684,686],{},"There is a fourth problem the software does not report: the parameter set itself survived a search. If you ran 400 variants and kept the best one, the result you are reading was selected by hindsight. That is ",[14,685,75],{"href":74},", and it is the single largest gap between tested and live performance.",[20,688,65],{"id":64},[10,690,691],{},"A backtest is the cheapest way to reject a bad idea and the most expensive way to confirm a good one. It can establish that a rule set is mechanically coherent, that it survives a rough cost assumption, and that its drawdown profile is something you could sit through. It cannot establish that the edge exists, because every input it uses is a reconstruction and every parameter it uses was chosen after the data was seen.",[10,693,694],{},"Anyone deciding where to put money should treat a backtest as a screening tool with a veto, never as evidence.",[20,696,85],{"id":84},[10,698,699,700,703,704,707],{},"ShowMyTrades publishes ",[45,701,702],{},"10,000+ accounts"," as public pages, resting on ",[45,705,706],{},"15,436,464 synchronised trades"," (August 2026). Not one of them is simulated: every trade in that count was filled by a broker and read back from it.",[10,709,710,711,714,715,717,718,721,722,717,726,729],{},"That published population is overwhelmingly automated — median autotrading share ",[45,712,713],{},"99%",", with 53.9% of accounts running above 90% automation and 42.2% below 10%. The automated portion consists, in the main, of strategies that were backtested before they were funded. Across the whole published set the median ",[14,716,110],{"href":109}," is ",[45,719,720],{},"1.28"," and the median ",[14,723,725],{"href":724},"\u002Fglossary\u002Fwhat-is-the-sharpe-ratio","Sharpe ratio",[45,727,728],{},"0.05",". Those are the figures the tester reports were competing against.",[10,731,732,733,736,737,740],{},"Costs are the line a simulation most often understates, and here they are billed rather than assumed: ",[45,734,735],{},"$4,782,670"," charged in commission and ",[45,738,739],{},"$862,547"," in swap, with 86.3% of the accounts that carry any swap paying it net negative. A backtest set to zero swap on a strategy that holds positions overnight is not slightly optimistic; it is missing a recurring charge.",[10,742,743],{},[744,745],"img",{"alt":746,"src":747},"Spread, commission and swap as three separate cost lines: $4,782,670 charged in commission and $862,547 in swap across public ShowMyTrades accounts","\u002Fimages\u002Farticles\u002Fwhere-costs-hide.svg",[10,749,750],{},[132,751,752],{},"A tester with a fixed spread and no swap has left out two of the three.",[20,754,127],{"id":126},[10,756,757,758,762],{},"Nowhere, deliberately. ShowMyTrades does not host backtests, upload simulations or accept a strategy report as a ",[14,759,761],{"href":760},"\u002Fglossary\u002Fwhat-is-a-track-record","track record",". Every account page is synced read-only from the broker, which is why the numbers above describe executed trades rather than modelled ones.",[10,764,765,766,96,769,772,773,775,776,96,778,780,781,783,784,786],{},"The modules that expose what a backtest hides are: ",[45,767,768],{},"Total Commissions",[45,770,771],{},"Total Swap Paid"," in the Advanced Statistics block, the real cost of the strategy in account currency; the ",[45,774,145],{}," panel, which reports ",[45,777,532],{},[45,779,536],{}," to the trade server, the conditions your fills were actually obtained under; and ",[45,782,383],{},", whose ",[45,785,379],{}," tab lists each executed order at the price it was genuinely filled at rather than the price a tester would have granted it.",[10,788,345,789,792,793,796],{},[45,790,791],{},"Track Record Verified"," badge, held by 65 accounts, and ",[45,794,795],{},"Trading Privileges Verified",", held by 264, mark the records where that broker-to-page chain has been checked rather than asserted.",[20,798,184],{"id":183},[186,800,801,807,818,824],{},[189,802,803,806],{},[45,804,805],{},"\"It used every tick, so it is accurate.\""," Tick modelling improves the price path, not the fill. Your broker's spread, execution and rejections are still absent.",[189,808,809,812,813,817],{},[45,810,811],{},"\"It was tested over ten years.\""," ",[14,814,816],{"href":815},"\u002Fguides\u002Fhow-much-history-a-track-record-needs","Length is not independence",". A decade that contained one dominant regime is one observation, not 2,500.",[189,819,820,823],{},[45,821,822],{},"\"Only three parameters were optimised.\""," Three parameters at twenty values each is 8,000 experiments. The winner of 8,000 experiments is partly lucky by construction.",[189,825,826,829],{},[45,827,828],{},"\"The demo forward test confirmed it.\""," Demo servers fill optimistically and never reject. A demo result is a second simulation, not a first live test.",[10,831,832,833,220],{},"Before you trust any performance figure, tested or live, work through ",[14,834,836],{"href":835},"\u002Fguides\u002Fverifying-trading-performance-claims","how to verify trading performance claims",{"title":37,"searchDepth":222,"depth":222,"links":838},[839,840,841,842,843],{"id":22,"depth":222,"text":23},{"id":64,"depth":222,"text":65},{"id":84,"depth":222,"text":85},{"id":126,"depth":222,"text":127},{"id":183,"depth":222,"text":184},"Strategy","Backtesting simulates a trading strategy on historical price data. What it can prove, what it cannot, and why live broker-synced results almost always differ.",false,{},[849,625,626],"what-is-curve-fitting",{"title":632,"description":845},"5.glossary\u002Fwhat-is-backtesting","Backtesting","he7JKboqSnysaWcJ_U_Uz3xPVvizet9GFQbrgkBSinQ",{"id":855,"title":856,"body":857,"category":621,"date":230,"description":1128,"draft":232,"extension":233,"meta":1129,"navigation":232,"path":16,"related":1130,"seo":1133,"stem":1134,"term":17,"updated":230,"__hash__":1135},"glossary\u002F5.glossary\u002Fwhat-is-metatrader.md","What Is MetaTrader? MT4 vs MT5, Explained",{"type":7,"value":858,"toc":1121},[859,862,864,867,873,881,884,961,967,969,972,979,981,1007,1013,1015,1029,1046,1055,1086,1088,1114],[10,860,861],{},"MetaTrader is a trading platform built by MetaQuotes and licensed to brokers, who run their own servers and give clients the terminal to install. Two versions are in active use: MetaTrader 4, released in 2005, and MetaTrader 5, released in 2010. MetaTrader is not a broker and holds no money — it is the software layer between you and whichever broker issued your login.",[20,863,23],{"id":22},[10,865,866],{},"Every MetaTrader setup has three parts, and confusing them is the source of most support questions.",[28,868,871],{"className":869,"code":870,"language":33},[31],"Terminal (your PC or VPS)      ← charts, Expert Advisors, client-side logic\n    ↕ round trip measured as ping\nTrade server (your broker)     ← balance, order matching, server-held SL\u002FTP\nMQL (MQL4 or MQL5)             ← the language EAs and indicators are written in\n",[35,872,870],{"__ignoreMap":37},[10,874,875,876,880],{},"You log in with an account number, a server name and a password. There are two passwords against the same account: the master password, which can trade, and the ",[14,877,879],{"href":878},"\u002Fglossary\u002Fwhat-is-an-mt4-investor-password","investor password",", which is read-only and is the standard credential for third-party verification.",[10,882,883],{},"What actually differs between the versions:",[885,886,887,902],"table",{},[888,889,890],"thead",{},[891,892,893,896,899],"tr",{},[894,895],"th",{},[894,897,898],{},"MT4",[894,900,901],{},"MT5",[903,904,905,917,928,939,950],"tbody",{},[891,906,907,911,914],{},[908,909,910],"td",{},"Language",[908,912,913],{},"MQL4",[908,915,916],{},"MQL5",[891,918,919,922,925],{},[908,920,921],{},"Accounting",[908,923,924],{},"Order-based: one order is one position",[908,926,927],{},"Deal and position based, netting or hedging",[891,929,930,933,936],{},[908,931,932],{},"Timeframes",[908,934,935],{},"9",[908,937,938],{},"21",[891,940,941,944,947],{},[908,942,943],{},"Markets",[908,945,946],{},"Forex and CFDs",[908,948,949],{},"Adds exchange-traded instruments and depth of market",[891,951,952,955,958],{},[908,953,954],{},"Strategy tester",[908,956,957],{},"Single symbol, single thread",[908,959,960],{},"Multi-symbol, multi-threaded, real ticks",[10,962,963,964,966],{},"They are not two versions of one product in any practical sense. MQL4 code does not compile as MQL5, an ",[14,965,161],{"href":235}," does not port between them, and account history does not move. Migrating means starting a new account.",[20,968,65],{"id":64},[10,970,971],{},"Whichever version you run, the terminal is only the window. Your fills, your spread, your swap and your stop triggers are decided by the broker's trade server, and the same MT5 build produces different results at different brokers.",[10,973,974,975,978],{},"What MetaTrader does give you, and what has made it the default for two decades, is a machine-readable record that a third party can read directly from the broker. That is the whole basis of published ",[14,976,977],{"href":760},"track records",": a read-only credential, an open feed, and no file the trader gets to edit on the way out.",[20,980,85],{"id":84},[10,982,983,984,987,988,991,992,96,996,1000,1001,1004,1005,220],{},"MetaTrader is very nearly the whole market we see. Of the ",[45,985,986],{},"10,000+ accounts connected to ShowMyTrades"," (August 2026), the overwhelming majority run ",[45,989,990],{},"MT4 or MT5",", alongside ",[14,993,995],{"href":994},"\u002Fglossary\u002Fwhat-is-ctrader","cTrader",[14,997,999],{"href":998},"\u002Fglossary\u002Fwhat-is-tradelocker","TradeLocker",". Those accounts reach ",[45,1002,1003],{},"703 distinct broker servers"," and have produced ",[45,1006,706],{},[10,1008,1009,1010,1012],{},"MT5 outnumbers MT4 by more than four to one here. That is a statement about the accounts arriving on this platform in 2026, not a verdict on either version; plenty of long-running MT4 records are still the better track record on the page. Across the public accounts on ShowMyTrades with trading history (August 2026), the ",[45,1011,91],{}," — only possible because both versions run code natively, with no bridge, no API key and no third-party plumbing.",[20,1014,127],{"id":126},[10,1016,1017,1018,92,1021,92,1024,154,1026,1028],{},"The account header shows the platform as a badge — ",[45,1019,1020],{},"MetaTrader 4",[45,1022,1023],{},"MetaTrader 5",[45,1025,995],{},[45,1027,999],{}," — beside the broker, the account currency, the leverage and the automation split.",[10,1030,1031,1032,96,1035,1038,1039,96,1042,1045],{},"When you add an account, the connection picker names the difference directly: ",[132,1033,1034],{},"MetaTrader 4 with EA",[132,1036,1037],{},"MetaTrader 5 with EA"," are marked recommended because updates are far more frequent, while ",[132,1040,1041],{},"MetaTrader 4 Direct Connection",[132,1043,1044],{},"MetaTrader 5 Direct Connection",", both still labelled Beta, sync from the broker using the investor password with nothing installed in your terminal.",[10,1047,1048,1049,1051,1052,1054],{},"That choice changes what the page can show, on either version. Only an EA connection produces the ",[45,1050,141],{}," module, where the terminal reports on its own host and link and lists the charts and Expert Advisors currently loaded. On MT4 the same module is titled simply ",[45,1053,145],{},", because the MT4 EA does not report the chart list at all — we show nothing rather than claim no charts are open.",[10,1056,1057,1058,1063,1064,1067,1068,96,1071,1074,1075,1078,1079,1082,1083,1085],{},"Verification is version-neutral. The header carries a ",[45,1059,1060],{},[14,1061,1062],{"href":576},"Track Record"," badge, green once the read-only investor password is on file, and a ",[45,1065,1066],{},"Trading Privileges"," badge, green once a pending order carrying your ShowMyTrades user ID in the comment field has been placed. Across the connected accounts, ",[45,1069,1070],{},"65 hold Track Record Verified",[45,1072,1073],{},"264 Trading Privileges Verified",". ",[14,1076,1077],{"href":438},"Per-strategy reporting"," in ",[45,1080,1081],{},"Breakdown Statistics → By Magic Number"," is an MT4 and MT5 capability, because the ",[14,1084,60],{"href":59}," field is a MetaTrader concept.",[20,1087,184],{"id":183},[186,1089,1090,1096,1102,1108],{},[189,1091,1092,1095],{},[45,1093,1094],{},"\"MetaTrader is my broker.\""," It is software your broker licenses. Deposits, withdrawals, spreads and execution are the broker's, and complaints go to them.",[189,1097,1098,1101],{},[45,1099,1100],{},"\"MT5 is MT4 with more features.\""," It is a rewrite. EAs, indicators and scripts have to be rebuilt, which is why many working systems never moved.",[189,1103,1104,1107],{},[45,1105,1106],{},"\"MT5 does not allow hedging.\""," It supports both netting and hedging; which one applies is set by the broker when the account is opened, and it cannot be changed afterwards.",[189,1109,1110,1113],{},[45,1111,1112],{},"\"The platform decides my fills.\""," The trade server does. Two terminals of the same build, on two brokers, will not fill the same order the same way.",[10,1115,1116,1117,220],{},"To turn a MetaTrader login into a record other people can check: ",[14,1118,1120],{"href":1119},"\u002Fguides\u002Fhow-to-verify-your-account","how to verify your trading account",{"title":37,"searchDepth":222,"depth":222,"links":1122},[1123,1124,1125,1126,1127],{"id":22,"depth":222,"text":23},{"id":64,"depth":222,"text":65},{"id":84,"depth":222,"text":85},{"id":126,"depth":222,"text":127},{"id":183,"depth":222,"text":184},"MetaTrader is the platform most retail forex accounts run on. What separates MT4 from MT5, what the investor password does, and the real platform split we see.",{},[1131,450,238,239,1132],"what-is-an-mt4-investor-password","what-is-ctrader",{"title":856,"description":1128},"5.glossary\u002Fwhat-is-metatrader","MKdDWOKBnGlWX-ZwLgaS8-7RFBIRZWEdssYltOPR2Z8",1787415685451]