How the app turns your daily Key Levels into tradeable signals. Every signal is derived from the levels — the levels are the edge; this is the delivery logic.
Levels are calculated after Day close (your algorithm) and loaded per timeframe: Intra, H1, H4. Around the current price, each timeframe has a nearest support (below) and nearest resistance (above), plus the level beyond each.
Every level produces two reads. Both are scalps.
A candle closes past a level → trade the break toward the next level.
Price hits a level → scalp the reversal off it (fixed $4).
Signals are event-driven — nothing is pre-placed in the market. The strategy watches price, and a signal only appears the moment price reaches a level. Entry is always market at that point; there are no resting limit orders and no split legs.
Lot size risks exactly your chosen % of the account across the $5 SL distance. Recover = 4× base.
You approve each signal; on Accept it moves to the Trade tab (and, once wired, to MT5 via the bridge). A macro snapshot (day + session) is captured at accept time and travels Signal → Trade → History. The LLM "AI" button gives analysis only — it never places orders.
Add a Caution tag to Continuation signals when the day's price change is large. If price has moved more than 1% / 2% per day, flag those continuation setups as higher-risk (momentum may be overextended, chasing a break is riskier). The tag warns but doesn't block — you still decide.
Thresholds to confirm: 1% = soft caution, 2% = strong caution? Applies to Continuation only (Reversal is a mean-reversion play, different risk profile).
Start on Demo until you trust the full flow. You can switch to Live anytime.
Rex will refuse any order that breaks these limits — a hard safety cap, even in auto mode.
Once Rex is online, go to the Trade tab to see the account and let Aloka send approved trades.
| Factor | What it reads | Weight | From |
|---|---|---|---|
| Trend / regime | EMA5 vs SMA21/200 — is the trade with the trend or against it | 18% | Calc |
| Room to target | Distance from entry to the next level — is the path clear | 14% | Calc |
| Level strength | How many times the level held before — clean vs crowded | 8% | Calc |
| Liquidity pools | PDH/PDL, equal highs/lows, round numbers — swept behind entry vs blocking the path | 12% | Calc |
| Patterns | Candle patterns on M5–H4 (engulfing, hammer, stars) — with or against the signal | 10% | Calc |
| Over-extension | How far price has run today vs the daily open | 6% | Calc |
| Volatility | ATR / recent range — are stops realistic right now | 8% | Calc |
| News proximity | Time to the next high-impact event (economic calendar) | 14% | AI |
| News meaning | What today’s gold headlines actually imply — bullish or bearish | 10% | AI |
{ "signalId": "...", "score": 91, "band": "auto",
"factors": [ { "key": "liquidity", "name": "Liquidity pools",
"weight": 10, "value": 30, "dir": "warn", "live": true,
"text": "EQH 4,357 sits before your target…" }, … ],
"headline": "…", "computedAt": "ISO" }