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

MQL5 Indicators Experts

Specification

# 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

Responded

1
Developer 1
Rating
(283)
Projects
354
29%
Arbitration
37
27% / 65%
Overdue
10
3%
Loaded
2
Developer 2
Rating
(1)
Projects
3
0%
Arbitration
0
Overdue
0
Free
3
Developer 3
Rating
(17)
Projects
21
19%
Arbitration
5
40% / 40%
Overdue
0
Free
4
Developer 4
Rating
(261)
Projects
307
76%
Arbitration
13
77% / 0%
Overdue
5
2%
Working
5
Developer 5
Rating
(73)
Projects
91
57%
Arbitration
6
67% / 17%
Overdue
2
2%
Loaded
6
Developer 6
Rating
(62)
Projects
90
29%
Arbitration
24
13% / 58%
Overdue
7
8%
Working
7
Developer 7
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
8
Developer 8
Rating
(319)
Projects
571
35%
Arbitration
83
31% / 45%
Overdue
206
36%
Free
9
Developer 9
Rating
(1)
Projects
1
0%
Arbitration
0
Overdue
0
Free
Published: 1 code
10
Developer 10
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
11
Developer 11
Rating
(1)
Projects
2
50%
Arbitration
0
Overdue
0
Free
Published: 2 codes
12
Developer 12
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
Published: 1 code
13
Developer 13
Rating
(1)
Projects
1
0%
Arbitration
0
Overdue
0
Working
14
Developer 14
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
15
Developer 15
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
Published: 2 codes
16
Developer 16
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
17
Developer 17
Rating
(211)
Projects
274
21%
Arbitration
24
54% / 17%
Overdue
0
Free
18
Developer 18
Rating
(3)
Projects
9
67%
Arbitration
0
Overdue
0
Working
19
Developer 19
Rating
(2)
Projects
2
50%
Arbitration
0
Overdue
0
Free
20
Developer 20
Rating
(16)
Projects
30
40%
Arbitration
3
33% / 67%
Overdue
7
23%
Working
21
Developer 21
Rating
(9)
Projects
11
27%
Arbitration
0
Overdue
2
18%
Working
Published: 1 code
22
Developer 22
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
23
Developer 23
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
24
Developer 24
Rating
(1)
Projects
1
0%
Arbitration
0
Overdue
1
100%
Free
25
Developer 25
Rating
(15)
Projects
33
0%
Arbitration
8
25% / 50%
Overdue
14
42%
Free
Similar orders
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
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
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
I need a robust optimization of my MT5 EA, mainly for XAUUSD (Gold). Please optimize the existing adjustable parameters such as entry/exit settings, SL/TP, trailing/break-even settings, and any other strategy parameters that are appropriate. I want the optimization focused on stable profitability, low/moderate drawdown, and robustness rather than simply the highest possible profit. Please use out-of-sample testing

Project information

Budget
100+ USD
Deadline
from 10 to 40 day(s)

Customer

Placed orders1
Arbitrage count0