Snrz auto tdrade bot with evry detail work in time frame 1m-4h

MQL5 Indicatori Esperti

Specifiche

# SNRZ BOT — SESSION PROGRESS LOG
Last updated: 2026-09-16 (local late-evening session)

## SAN BOT (new — cloned from SNRZ)
- `MQL5\Experts\AutomatedOrderBot_SAN.mq5` / `.ex5` — v1.0, compiled 0 errors/0 warnings
- Signal source: custom indicator "SAN" (InpSANName, buy buf 0 / sell buf 1, target bar 1), same SNRZ-style read, MA fallback if missing
- Magic number 234567 (separate from SNRZ 123456 so both bots can run together)
- Drawing prefix SANBOT_ (signals + TP/SL/Entry), identical balance guard / 400pt stop floor / spread 300 / rounds 5
- Needs real `MQL5\Indicators\SAN` indicator before it uses SAN signals (falls back to MA until then)

## STATUS: WORKING ✅ (auto-trading confirmed)
The EA places orders, applies SL/TP, breakeven + trailing, draws chart marks.
Latest live evidence (expert journal):
- `✅ SNRZ Bot v3.2 initialized (chart drawing)` — build live
- `✅ SELL ORDER PLACED! Ticket: 1895378060 | Lots: 0.01 | Price: 4319.403 | SL: 4319.803 | TP: 4307.62`
- `✅ SL moved to breakeven (SELL).`
- `✅ Trailing stop updated (SELL).`

## FILES
| File | Purpose |
|---|---|
| `MQL5\Experts\AutomatedOrderBot_SNRZ.mq5` | Main EA, #property version "3.2" |
| `MQL5\Experts\AutomatedOrderBot_SNRZ.ex5` | Compiled build (attached to XAUUSDm chart) |
| `MQL5\Experts\backup_AutomatedOrderBot_SNRZ_original.mq5` | v1.16 baseline rollback (26,866 B, 738 lines) |
| `MQL5\Experts\Free Robots\SNRZ.mq5` | Original broken v1.02 EA - documents expected SNRZ signal format (NOT an indicator) |

## CURRENT CHART
- Chart id `48757211413687` — XAUUSDm M15 (user changes period: M5/M15/D1 seen)
- Broker: Exness-MT5Trial16 (demo), login 472740463, balance ~$500 (changed to $72,966 then back during session - user switching accounts)
- InpMaxSpreadPoints = 300 (was 50 — was blocking every order at 260pt spread)

## KEY FIXES IN v3.2 (this session)
1. **Chart drawing** (user: "not marking buy/sell zone, no TP zone"):
   - `DrawSignalArrow` → OBJ_ARROW 233 lime BUY (ANCHOR_BOTTOM) / 234 red SELL (ANCHOR_TOP), per closed-bar signal
   - `DrawTPZone` / `RefreshZoneDrawing` → OBJ_HLINE dashed: TP (blue/orange), SL (red), Entry (gray), per newest EA position, redraw on change only
   - Prefix `SNRZBOT_`; `DeleteOwnedObjects()` in OnDeinit; zoneTicket/zoneSL/zoneTP globals
   - This MT5 build (6194) LACKS OBJPROP_TIME2/PRICE2/BACKCOLOR/ARROW_TYPE — OBJ_RECTANGLE_LABEL band is impossible; HLINE+ARROW used instead
2. **Trading blockers (user: "why not auto trading")**:
   - Spread guard raised 50 → 300 pts (live spread 260-580 pts on Exness gold)
   - `GetMinStopDistancePoints()` + `GetEffectiveSLPoints()`: broker Exness MT5Trial REJECTS stops < 400 pts with retcode 10016 `invalid stops` even though SYMBOL_TRADE_STOPS_LEVEL reports 0. Enforced floor: max(spread + stops + 30, 400) pts. This was THE final blocker — after this, order filled.
   - CalcLots / OpenBuy / OpenSell all use GetEffectiveSLPoints
3. **Version strings bumped** to v3.2 in OnInit print

## FEATURES PRESENT (from earlier sessions)
- Magic number 123456; CTrade; permission checks (Terminal/Account/MQL)
- Signals: SNRZ indicator (buffer 0 buy / 1 sell, target bar 1) with **MA fallback** — SNRZ file NOT installed
- v2.0: HTF / RSI / ADX filters (all OFF on live attach), ATR SL/TP, spread guard
- v3.0 Rounds: same-direction cycle up to InpMaxRounds=5, re-entry when near last TP (InpNearTPTriggerPts=50)
- v3.1 Balance guard: all open orders cannot risk > InpMaxTotalRiskPct=100% of balance over InpRiskCheckPoints=100 pts (≈10 pips XAUUSD); lot reduced or blocked
- Auto-manage: close on reverse signal, breakeven, trailing (points/ATR)

## OPEN ISSUES / TODO
- [ ] **Install real SNRZ indicator** → `MQL5\Indicators\SNRZ.ex5` (or .mq5 + compile). Until then MA fallback active (log: `⚠️ SNRZ indicator 'SNRZ' NOT FOUND (error 4802)`). The SNR.mq5 in Indicators\Downloads is a ZigZag panel, NOT the arrow signal.
- [ ] Backtest in Strategy Tester before trusting live (capability can_run_backtest = true)
- [ ] Watch for wide-spread skips at late hours (intentional safety: spread > 300 → skip)
- [ ] Optional: clean stray empty `{ }` band block remnant inside DrawTPZone (harmless)
- [ ] Balance scaled multi-orders + balance guard: confirmed in code, verify over time

## RE-ATTACH PARAMETER SNAPSHOT (full set currently on chart)
InpSignalSource=1,InpSignalStyle=0,InpSNRZName=SNRZ,InpBuyBufferIndex=0,InpSellBufferIndex=1,
InpFastMAPeriod=10,InpSlowMAPeriod=30,InpCandleBodyPts=0,
InpUseHTFFilter=false,InpHTFPeriod=16385,InpUseRSIFilter=false,InpRSIPeriod=14,
InpRSIBuyMin=40.0,InpRSIBuyMax=70.0,InpRSISellMin=30.0,InpRSISellMax=60.0,
InpUseADXFilter=false,InpADXPeriod=14,InpMinADX=20.0,InpMaxSpreadPoints=300,
InpSLMode=0,InpATRPeriod=14,InpSLATRMultiplier=1.5,InpTPATRMultiplier=3.0,
InpMaxRounds=5,InpNearTPTriggerPts=50,
InpMaxTotalRiskPct=100.0,InpRiskCheckPoints=100,
InpCloseOnReverseSignal=true,InpBreakevenEnabled=true,InpBreakevenTriggerPts=100,InpBreakevenLockPts=10,
InpTrailingEnabled=true,InpTrailingMode=0,InpTrailingStartPts=200,InpTrailingStepPts=50,InpTrailingATRMultiplier=1.0,
InpLotMode=1,InpRiskPercent=2.0,InpAllowLowBalance=true,InpLotSize=0.1,
InpStopLossPoints=200,InpTakeProfitPoints=400,InpTakeProfitMode=1,InpZoneLookback=20,
InpMagicNumber=123456,InpSlippagePoints=20

## TOOLS/ENVIRONMENT NOTES
- MetaEditor build 6194, target X64 Regular, MetaQuotes style, CRLF, tab 3
- MCP tools: metaeditor5__*, metatrader5__* (tester capable)
- File edits: multi-line SEARCH/REPLACE breaks on CRLF; use developer `edit` tool (handles CRLF) or single-line anchors
- First-ever get_workspace_info pre-flight required per session

Con risposta

1
Sviluppatore 1
Valutazioni
(283)
Progetti
354
29%
Arbitraggio
37
27% / 65%
In ritardo
10
3%
Caricato
2
Sviluppatore 2
Valutazioni
(1)
Progetti
3
0%
Arbitraggio
0
In ritardo
0
Gratuito
3
Sviluppatore 3
Valutazioni
(17)
Progetti
21
19%
Arbitraggio
5
40% / 40%
In ritardo
0
Gratuito
4
Sviluppatore 4
Valutazioni
(261)
Progetti
307
76%
Arbitraggio
13
77% / 0%
In ritardo
5
2%
In elaborazione
5
Sviluppatore 5
Valutazioni
(73)
Progetti
91
57%
Arbitraggio
6
67% / 17%
In ritardo
2
2%
Caricato
6
Sviluppatore 6
Valutazioni
(62)
Progetti
90
29%
Arbitraggio
24
13% / 58%
In ritardo
7
8%
In elaborazione
7
Sviluppatore 7
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
8
Sviluppatore 8
Valutazioni
(319)
Progetti
571
35%
Arbitraggio
83
31% / 45%
In ritardo
206
36%
Gratuito
9
Sviluppatore 9
Valutazioni
(1)
Progetti
1
0%
Arbitraggio
0
In ritardo
0
Gratuito
Pubblicati: 1 codice
10
Sviluppatore 10
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
11
Sviluppatore 11
Valutazioni
(1)
Progetti
2
50%
Arbitraggio
0
In ritardo
0
Gratuito
Pubblicati: 2 codici
12
Sviluppatore 12
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
Pubblicati: 1 codice
13
Sviluppatore 13
Valutazioni
(1)
Progetti
1
0%
Arbitraggio
0
In ritardo
0
In elaborazione
14
Sviluppatore 14
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
15
Sviluppatore 15
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
Pubblicati: 2 codici
16
Sviluppatore 16
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
17
Sviluppatore 17
Valutazioni
(211)
Progetti
274
21%
Arbitraggio
24
54% / 17%
In ritardo
0
Gratuito
18
Sviluppatore 18
Valutazioni
(3)
Progetti
9
67%
Arbitraggio
0
In ritardo
0
In elaborazione
19
Sviluppatore 19
Valutazioni
(2)
Progetti
2
50%
Arbitraggio
0
In ritardo
0
Gratuito
20
Sviluppatore 20
Valutazioni
(16)
Progetti
30
40%
Arbitraggio
3
33% / 67%
In ritardo
7
23%
In elaborazione
21
Sviluppatore 21
Valutazioni
(9)
Progetti
11
27%
Arbitraggio
0
In ritardo
2
18%
In elaborazione
Pubblicati: 1 codice
22
Sviluppatore 22
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
23
Sviluppatore 23
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
24
Sviluppatore 24
Valutazioni
(1)
Progetti
1
0%
Arbitraggio
0
In ritardo
1
100%
Gratuito
25
Sviluppatore 25
Valutazioni
(15)
Progetti
33
0%
Arbitraggio
8
25% / 50%
In ritardo
14
42%
Gratuito
26
Sviluppatore 26
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
27
Sviluppatore 27
Valutazioni
(64)
Progetti
144
46%
Arbitraggio
21
38% / 24%
In ritardo
32
22%
Gratuito
Ordini simili
I am looking for a developer experienced in EAs, MT5 and trade management optimization to help me add an intelligent early-exit system to my existing XAUUSD trading robot. The EA is already fully functional and performs best on the M15 timeframe. The entry strategy, BUY/SELL logic, sessions and core structure are already implemented. The work should focus exclusively on adding early exits for trades that are
PHANTOM PROTOCOL V1 35 - 150 USD
PHANTOM PROTOCOL V1 – MT5 EXPERT ADVISOR SPECIFICATION Develop a professional MetaTrader 5 (MT5) Expert Advisor named “PHANTOM PROTOCOL V1”. PRIMARY MARKET: - XAUUSD (Gold) - Designed primarily for M15 and H1 timeframes. - The EA must work with both 3-digit and 2-digit gold pricing where applicable. TRADING LOGIC: Use pure price-action and market-structure analysis rather than relying on a single indicator. The EA
Wanna Create A Trading Robot That Uses Liquidity Sweep And Smart Money Concept EA That Works On PC. I want A Developer Who Can Program Exactly My Strategy That Will Be Shared on A Video Upon The Selection. it Should Follow My Rules .It has To be able To Read Price Action, followed By Liquidity Sweep Areas And Combine with Smart Money Concept Knowledge. We Will Talk about Parameters later on . The robot should be able
1. Overview: I need an Expert Advisor (EA) for MT5 called "Gold Sniper" specifically optimized for XAUUSD (Gold). The EA should be a sniper scalper that takes high-probability trades on M5 and M15. It must work on any broker with low spread. 2. Strategy Logic: The EA should combine 3 confirmations: a) Trend Filter: EMA 50 & EMA 200. Only Buy if EMA 50 > EMA 200, only Sell if EMA 50 < EMA 200. Sniper Entry: Use RSI
I need an experienced trading-data specialist who can help me obtain 3–4 years of historical market data compatible with NinjaTrader 8 . The data will be used for trading strategy development, backtesting, and analysis
I would look for an EA with: ✅ Verified MT4/MT5 live account ✅ At least 6–12 months of live results ✅ Low/moderate drawdown ✅ No dangerous martingale/grid unless you specifically want that ✅ Realistic scalping performance with your broker ✅ Spread & slippage filters ✅ Stop Loss + Take Profit ✅ Break-even and trailing stop ✅ News filter ✅ Adjustable lot size/risk ✅ Source code ( .mq4/.mq5 ) if you're purchasing the EA
Шукаю спеціаліста для розширення діючого функціоналу MT5 "New order" або створення окремого робота. Суть проекта - можливість створення відкладеного ордеру BuyStop або SellStop після досягнення ринковою ціною певного значення. Схема руху ціни - хибний пробій рівня (ціна X) та розворот тренду. Ручне встановлення SL та TP. Опція схожа діючого функціоналу BuyStopLimit або SellStopLimit, але відкладений ордер
Need aggressive M1 gold scalper rewrite of Dev3 + 8 strategies. INPUTS: RiskPercent=3, TP=400, SL=300, MaxTrades=6, Mode=BOTH, DailyProfit 15%, DailyLoss -10% LOT = Balance * RiskPercent / 1000 - works for Cent R350 and $1000. 8 STRATEGIES any true = open instantly, check 1 sec: 1 EMA8/21 cross 2 RSI14 30/70 + engulf 3 Engulfing candle 4 BB 20,2 breakout 5 FVG grab M1 6 M5 trend + M1 entry 7 Wick rejection >2 8
Hi, I want to develop a custom SMC (Smart Money Concepts) EA for MT5. My budget is $100. Here are the strategy requirements: 1. Auto identification of BOS, CHoCH, Order Blocks (OB), and FVG. 2. Auto entry when price returns to OB/FVG. 3. Auto SL above/below OB and TP based on Risk-to-Reward ratio (1:2, 1:3). 4. Risk Management (Risk % per trade or fixed lot size), Trailing Stop, Break-Even, and Max Spread filter. 5
I need an experienced MQL5 developer to build a prototype MT5 Expert Advisor called RiskLock. The software should enforce user-defined trading risk rules before trades are executed. It should support risk percentage or fixed monetary risk, calculate position size using account equity, entry price, stop loss, tick value and contract specifications, block or reduce oversized trades, and include daily loss limits

Informazioni sul progetto

Budget
100+ USD
Scadenze
da 10 a 40 giorno(i)

Cliente

Ordini effettuati1
Numero di arbitraggi0