指定
# 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
応答済み
1
評価
プロジェクト
354
29%
仲裁
37
27%
/
65%
期限切れ
10
3%
取り込み中
2
評価
プロジェクト
3
0%
仲裁
0
期限切れ
0
暇
3
評価
プロジェクト
21
19%
仲裁
5
40%
/
40%
期限切れ
0
暇
4
評価
プロジェクト
307
76%
仲裁
13
77%
/
0%
期限切れ
5
2%
仕事中
5
評価
プロジェクト
91
57%
仲裁
6
67%
/
17%
期限切れ
2
2%
取り込み中
6
評価
プロジェクト
90
29%
仲裁
24
13%
/
58%
期限切れ
7
8%
仕事中
7
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
8
評価
プロジェクト
571
35%
仲裁
83
31%
/
45%
期限切れ
206
36%
暇
9
評価
プロジェクト
1
0%
仲裁
0
期限切れ
0
暇
パブリッシュした人: 1 code
10
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
11
評価
プロジェクト
2
50%
仲裁
0
期限切れ
0
暇
パブリッシュした人: 2 codes
12
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
パブリッシュした人: 1 code
13
評価
プロジェクト
1
0%
仲裁
0
期限切れ
0
仕事中
14
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
15
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
パブリッシュした人: 2 codes
16
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
17
評価
プロジェクト
274
21%
仲裁
24
54%
/
17%
期限切れ
0
暇
18
評価
プロジェクト
9
67%
仲裁
0
期限切れ
0
仕事中
19
評価
プロジェクト
2
50%
仲裁
0
期限切れ
0
暇
20
評価
プロジェクト
30
40%
仲裁
3
33%
/
67%
期限切れ
7
23%
仕事中
21
評価
プロジェクト
11
27%
仲裁
0
期限切れ
2
18%
仕事中
パブリッシュした人: 1 code
22
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
23
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
24
評価
プロジェクト
1
0%
仲裁
0
期限切れ
1
100%
暇
25
評価
プロジェクト
33
0%
仲裁
8
25%
/
50%
期限切れ
14
42%
暇
26
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
27
評価
プロジェクト
144
46%
仲裁
21
38%
/
24%
期限切れ
32
22%
暇
28
評価
プロジェクト
1
0%
仲裁
0
期限切れ
0
暇
パブリッシュした人: 10 codes
類似した注文
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
プロジェクト情報
予算
100+ USD
締め切り
最低 10 最高 40 日
依頼者
出された注文1
裁定取引数0