Overview
What the AI has learned — drag a node to move it, hover or click to inspect
Click any node — the AI hub or a factor — to see it here.
Signals
scanning
Journal
Daily P&L against your goal
Calendar
Performance
all timeSignal history
Every entry the scanner has tagged, tracked to TP1 or the stop.
News & calendar
-
MT5 EA
Same live signals, inside MetaTrader 5 — the EA calls this app's backend directly, it doesn't reimplement the engine.
SentyxEA.mq5
A thin MT5 client — it polls the same backend the website reads from, so it's always in sync with however the engine is currently tuned. Alert-only by default; auto-trading is opt-in.
Setup
-
Compile it. Open
SentyxEA.mq5in MetaEditor (MT5 → File → Open Data Folder →MQL5/Experts, drop the file there, open it, press F7). No extra libraries needed. -
Whitelist the backend URL. MT5 blocks outbound web requests by default.
Tools → Options → Expert Advisors → check "Allow WebRequest for listed URL" → add:
https://s-backend-production-28d2.up.railway.app -
Attach it to a chart for the pair you want signals on. Set LoginEmail /
LoginPassword to your website login, Timeframe to M1, M5, or M15 (the only
ones tracked), and SymbolSuffix if your broker appends one (e.g.
.m). - Leave AutoTrade off at first. It'll show the current setup in the chart comment and alert you on a new one, without placing any orders — watch it call things correctly before trusting it with real trades.
- Test on a demo account before ever turning AutoTrade on for a live one.
What AutoTrade actually does
A TRIGGERED setup places a market order now; a PENDING one places a limit order at the entry price and waits. TARGET_HIT (already ran to TP1) and anything flagged with a cost warning are both skipped — same rules the website itself uses.
Stop-loss and take-profit are set directly on the order; MT5 and your broker manage the exit natively, the EA doesn't babysit the position afterward. Lot size comes from RiskPercent of your account balance against the stop distance. Only one open position or pending order per symbol at a time.
No trailing stop, no partial close, no re-entry logic. Not financial advice — trade your own risk.