Spezifikation
# 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
Bewerbungen
1
Bewertung
Projekte
354
29%
Schlichtung
37
27%
/
65%
Frist nicht eingehalten
10
3%
Beschäftigt
2
Bewertung
Projekte
3
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
3
Bewertung
Projekte
21
19%
Schlichtung
5
40%
/
40%
Frist nicht eingehalten
0
Frei
4
Bewertung
Projekte
307
76%
Schlichtung
13
77%
/
0%
Frist nicht eingehalten
5
2%
Arbeitet
5
Bewertung
Projekte
91
57%
Schlichtung
6
67%
/
17%
Frist nicht eingehalten
2
2%
Beschäftigt
6
Bewertung
Projekte
90
29%
Schlichtung
24
13%
/
58%
Frist nicht eingehalten
7
8%
Arbeitet
7
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
8
Bewertung
Projekte
571
35%
Schlichtung
83
31%
/
45%
Frist nicht eingehalten
206
36%
Frei
9
Bewertung
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Veröffentlicht: 1 Beispiel
10
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
11
Bewertung
Projekte
2
50%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Veröffentlicht: 2 Beispiele
12
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Veröffentlicht: 1 Beispiel
13
Bewertung
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
0
Arbeitet
14
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
15
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Veröffentlicht: 2 Beispiele
16
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
17
Bewertung
Projekte
274
21%
Schlichtung
24
54%
/
17%
Frist nicht eingehalten
0
Frei
18
Bewertung
Projekte
9
67%
Schlichtung
0
Frist nicht eingehalten
0
Arbeitet
19
Bewertung
Projekte
2
50%
Schlichtung
0
Frist nicht eingehalten
0
Frei
20
Bewertung
Projekte
30
40%
Schlichtung
3
33%
/
67%
Frist nicht eingehalten
7
23%
Arbeitet
21
Bewertung
Projekte
11
27%
Schlichtung
0
Frist nicht eingehalten
2
18%
Arbeitet
Veröffentlicht: 1 Beispiel
22
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
23
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
24
Bewertung
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
1
100%
Frei
25
Bewertung
Projekte
33
0%
Schlichtung
8
25%
/
50%
Frist nicht eingehalten
14
42%
Frei
26
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
27
Bewertung
Projekte
144
46%
Schlichtung
21
38%
/
24%
Frist nicht eingehalten
32
22%
Frei
Ähnliche Aufträge
Ndugelo Ravhengani Bot
30+ USD
Create a bot that can trade and read indicators easy to read for first time users. Bot that can be used on a phone and connect to MT5. It should be easy to install or use on any device especially phone and laptop, preferably the bot that can run over night and controllable when needed
These are orderflow footprint indicator I would like to know if you can algorithmisie and build a stacked imbalance bot from them .. Kindlt let me know if you can do it and check the file before replying me
I have 2 trading view indicators by GainzAlgo that I want code to mt5 , could u advise? I need you to give me response if you can convert This
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
Scalping Reaction Zones + Valid Order Blocks
30 - 150 USD
Platform: TradingView Programming Language: Pine Script v6 Type: Custom Indicator Project Name: Scalping Reaction Zones + Valid Order Blocks MAIN GOAL I need a custom TradingView indicator for scalping. The indicator must detect: 1. Reaction / Explosion Zones 2. Valid Order Blocks 3. Combined Reaction Zone + Order Block zones The indicator should NOT generate: Buy signals Sell signals TP SL Entry signals Trading
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
Maximas e Minimas + Super Trend
35+ USD
Indicador Maximas e Minimas + Super Trend O Indicador MAX/MIN é um indicador de análise técnica para o MetaTrader 5 , desenvolvido para ajudar você a identificar regiões importantes de preço e possíveis oportunidades de compra e venda. O que ele faz MAX/MIN: identifica máximas e mínimas relevantes do mercado e mostra os preços no gráfico. HH / HL / LH / LL: ajuda a visualizar a estrutura do mercado, mostrando quando
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
I'm looking for an experienced developer to create an automated gold trading bot. The bot should be compatible with MetaTrader 4/5 and TradingView. Key Requirements: - Automated trading bot - Compatible with MetaTrader 4/5 and TradingView - Implement scalping and swing trading strategies Ideal Skills and Experience: - Proficiency in trading algorithms - Experience with gold trading - Familiarity with MetaTrader and
Projektdetails
Budget
100+ USD
Ausführungsfristen
von 10 bis 40 Tag(e)
Kunde
Veröffentlichte Aufträge1
Anzahl der Schlichtungen0