Trade Assistant Risk Calculator MT5
30 USD
Versione demo scaricata:
4
Pubblicato:
8 marzo 2026
Versione attuale:
1.10
Non hai trovato un robot adatto?
Ordina il tuo
su Freelance
Vai alla sezione Freelance
Ordina il tuo
su Freelance
Come acquistare un Robot di Trading o un indicatore
Esegui il tuo EA
hosting virtuale
hosting virtuale
Prova un indicatore/robot di trading prima di acquistarlo
Vuoi guadagnare nel Market?
Come presentare un prodotto per venderlo con successo
Ti stai perdendo delle opportunità di trading:
- App di trading gratuite
- Oltre 8.000 segnali per il copy trading
- Notizie economiche per esplorare i mercati finanziari
Registrazione
Accedi
Accetti la politica del sito e le condizioni d’uso
Se non hai un account, registrati

Hello Bo,
I cannot find configuration in Properties so how to customize the buttons to different Symbols?
8. INFO Tab — Account Dashboard
Hello Bo,
I cannot find configuration in Properties so how to customize the buttons to different Symbols?
8. INFO Tab — Account Dashboard
Not possible to test in Demo.
my trade did not close when SL/TP is touch, does the trade close when Hide SL/TP: ON ?
The prices are send to server when SL/TP is moved (when Hide SL/TP: ON). Can SL/TP remain hidden?
Not possible to test in Demo.
my trade did not close when SL/TP is touch, does the trade close when Hide SL/TP: ON ?
The prices are send to server when SL/TP is moved (when Hide SL/TP: ON). Can SL/TP remain hidden?
Hello Kum,
Thank you very much for your comments. Please see my answers below. Could you please upgrade the version, test it again, and let me know if there are any issues?"Not possible to test in Demo"
The EA uses OnChartEvent for all button/panel interactions, which does not work inside the MT5 Strategy Tester. This is a MetaTrader platform limitation, not a bug. To test, please use a Demo Account — open a demo account with your broker and attach the EA directly to a chart. All buttons and features work exactly the same as on a live account.
How "Hide SL/TP: ON" works:
When you enable "Hide SL/TP: ON", the EA places your order with SL = 0 and TP = 0 on the broker's server — meaning the broker sees a "naked" position with no stop loss or take profit. Your actual SL/TP levels are stored locally inside the EA's memory.
How it closes the trade:
The EA runs a monitoring function on every tick and every 1-second timer. It checks the current Bid/Ask price against your hidden SL/TP levels:
When the price touches your level, the EA sends a market close order immediately.
Important things to know:
The EA must be running — If you close MT5, remove the EA, or your computer loses power, there is NO server-side SL/TP protecting your position. The trade will remain open with no protection until you manually close it or re-attach the EA.
Slight slippage is possible — Since the EA closes at market price (not a pre-set server-side limit), there may be minor slippage during fast-moving markets, compared to a regular broker-executed SL/TP.
Dragging SL/TP lines on the chart will only update the hidden levels locally — nothing is sent to the broker, so your stops stay invisible.
In short: The broker never knows where your SL/TP is. The EA watches the price locally and closes the trade itself when the level is hit.
Hello Kum,
Hello Bo,
V1.8, the hidden TP/SL remain locally when dragged.
V1.9, reattached the EA. The exist order (#973348) SL cannot be drag, I do not have any SL on Broker Server. See attached PNG file
There is another set of pend order lines now.
Could you help me to understand how to use the EA efficiently.
Thank for the updates
Hello Bo,
V1.8, the hidden TP/SL remain locally when dragged.
V1.9, reattached the EA. The exist order (#973348) SL cannot be drag, I do not have any SL on Broker Server. See attached PNG file
There is another set of pend order lines now.
Could you help me to understand how to use the EA efficiently.
Thank for the updates
Hi Kum,
Thanks for the report — let me explain what happened with #973348 and how the latest version handles it.
What happened on your account
When you placed that order, you had both Hide SL/TP and Virtual Pending turned on. In this mode the EA does not send the SL/TP to the broker server — instead it tracks them internally and closes the position itself when price reaches those levels. That's why your broker shows the position with no SL/TP attached: it was never placed server‑side.
In the earlier version, those virtual SL/TP values for virtual‑pending‑filled positions were only kept in memory. This wasn't really a bug — it was simply a scenario the earlier version didn't cover yet. The consequence is that once the EA was detached and re‑attached to the chart, the in‑memory state was gone, and with it:
So #973348 is currently a position with no stop on either side — the EA doesn't remember it, and the broker never had one.
What to do right now on #973348
Because the original virtual SL/TP for that ticket only existed in the previous EA session's memory, they cannot be auto‑recovered. Please do this manually before anything else:
That's the only reliable recovery path for an order that was already stranded under the old behaviour.
What's new in the latest version
The latest version persists the virtual SL/TP of every filled position to a file on disk, not just in memory. So when you detach and re‑attach the EA, it reads that file back and:
In other words: the exact situation you hit — reattach EA → existing virtual‑pending‑filled position loses its SL/TP — no longer happens in the latest version.
Alongside that, virtual SL/TP is now tracked per ticket independently. Toggling Hide SL/TP or Virtual Pending on/off only affects new orders placed from that point on, and never touches any existing order's SL/TP.
A note on untriggered virtual pendings
One thing worth clarifying: untriggered virtual pending orders (ones that haven't been filled yet) are intentionally not restored after the EA is detached or the chart is closed. This is a deliberate safety design, not an oversight.
The reasoning: a virtual pending only exists inside the EA — the broker never sees it. If the EA isn't running, the pending isn't being watched. By the time you reopen the chart and re‑attach the EA, the market conditions that justified the pending in the first place may have completely changed — the setup might be invalidated, the spread/volatility profile different, or price may have already swept through and reversed. Silently resurrecting a stale pending and firing it off as a market order in that new environment is exactly the kind of surprise you don't want.
So the rule in the latest version is simple and predictable:
In short: the EA only "remembers" orders that have actually made it into the market. Anything still queued is left to your judgement each session.
Recommended next steps
Thanks again for reporting this — it was exactly the case that drove the fix.
Q1 — How many orders can the EA manage on the same symbol?
Plenty for any realistic manual‑trading workflow. The internal capacity of one EA copy is:
These limits apply to all symbols combined, not per symbol, so on a single chart you effectively never hit them.
Q3 — Can one copy of the EA manage 6 symbols without conflict?
This is a common misconception worth clarifying: the Symbol Switcher (the 6 configurable symbol buttons on the INFO tab, driven by InpSwitcherSymbols ) is not a multi‑symbol manager. It's just a one‑click chart‑symbol changer — a shortcut that calls ChartSetSymbolPeriod so you can jump between your favourite pairs without opening a new chart.
How the EA actually scopes orders:
Best practice for managing multiple symbols cleanly:
Q4 — After switching symbol via the switcher, the hidden TP/SL lines are missing. Any way to operate in full stealth mode?
What you observed is by design of how MT5 handles symbol switching, plus how the overlay bars are scoped:
The recommended way to get a fully visible stealth workflow:
That way every hidden SL/TP stays visible (and draggable) on its own chart, and you get full stealth execution on every pair.
There's no "show overlays for symbol X while the chart is displaying symbol Y" mode — that's a deliberate simplification to keep the chart honest: what you see on the chart is always at the price scale of the chart's own symbol, so showing a TP bar priced in USDJPY on an EURUSD chart would be misleading.
Q5 — In hidden pending mode it was hard to tell multiple pendings had been placed until they all triggered. Can trade history help?
Great feedback — a few existing tools already address this, and it's worth knowing where to look:
Before they trigger:
After they trigger:
Practical tip to avoid over‑stacking pendings:
Let me know if you'd like me to expand any of these into a short workflow example.
Best regards