VWAP + RSI Divergence EA with Martingale (MT4)

指定

## 🎯 **Project Overview**

I need an **Expert Advisor (EA)** for **MetaTrader 4** that combines signals from a **VWAP indicator** (provided) with **RSI Divergence detection** and includes a **Martingale function** for averaging losing positions. The EA should execute trades when **BOTH** indicators confirm the same direction.

---

## 📊 **Indicators Used**

### 1. VWAP Indicator (Custom)
- **File:** `VWAP_MT4_Gold_Ultimate 2d.mq4` (provided)
- **Buffer Structure:**
  - Buffer 0: VWAP Line
  - Buffer 1: Upper Band
  - Buffer 2: Lower Band
  - Buffer 3: Buy Arrows (`0.0` = no signal, `>0.0` = arrow)
  - Buffer 4: Sell Arrows (`0.0` = no signal, `>0.0` = arrow)

### 2. RSI Divergence (Standard RSI)
- **Type:** Built-in `iRSI()` indicator
- **Divergence Types Required:**
  - **Regular Bullish:** Price makes lower low, RSI makes higher low
  - **Regular Bearish:** Price makes higher high, RSI makes lower high
  - **Hidden Divergences** (optional)
- **Detection:** Swing high/low pivots in RSI

### 3. Divergence Strength Calculation
The EA calculates a divergence strength score from 0 to 100 based on the following factors:

- **Price swing size (20% weight):** The magnitude of the price movement between the two pivot points, normalized by ATR
- **RSI swing size (20% weight):** The magnitude of the RSI movement between the two pivot points
- **Divergence difference (40% weight):** The difference between price and RSI movement directions
- **Trend strength (10% weight):** Based on ADX value
- **RSI context (10% weight):** Bonus if RSI is in overbought/oversold territory

A divergence is considered valid only when its calculated strength is greater than or equal to `MinDivergenceStrength`.

---

## 📈 **Entry Logic**

### Signal Timing: `SignalAtBarClose = true`
- **All signals are evaluated at bar close** (prevents repainting). If set to false, signals are evaluated immediately, which may cause repainting and unreliable backtest results. Use with caution.

### First Entry Signal
A **first trade** is opened when **BOTH** conditions are met on the **same bar**:

#### BUY Signal (LONG)
1. **VWAP:** Green BUY arrow appears (Buffer 3 > 0)
2. **RSI:** Bullish divergence detected

#### SELL Signal (SHORT)
1. **VWAP:** Red SELL arrow appears (Buffer 4 > 0)
2. **RSI:** Bearish divergence detected

---

## 📊 **Martingale Function**

### Concept
When a trade (BUY or SELL) is in loss, **additional trades in the same direction** are opened to improve the average entry price.

### Martingale Entry Conditions
Each Martingale trade requires **TWO conditions**:
1. **Pip Distance:** Price has moved `MartingalePipStep` pips against the position
2. **Signal Confirmation:** One of three modes (user-selectable)

### Martingale Signal Modes

| Mode | Description | Buy Signal | Sell Signal |
|------|-------------|------------|-------------|
| **0** | **Pips Only** | Pip step reached | Pip step reached |
| **1** | **Pips + VWAP Band** | Pip step reached AND price at lower VWAP band | Pip step reached AND price at upper VWAP band |
| **2** | **Pips + RSI Level** | Pip step reached AND RSI < Oversold Level | Pip step reached AND RSI > Overbought Level |

### Martingale Exit Logic
When the **weighted net profit of all open trades in the same direction** reaches `MartingaleMinProfitPips` pips:
- **ALL trades in that direction are closed immediately**

The weighted net profit is calculated as the sum of (pips profit or loss × lot size) for each individual trade. This ensures that larger positions have a greater impact on the closing decision, reflecting the true monetary profit or loss of the combined positions.

### Example (BUY):
```
InitialLotSize = 0.01
MartingaleMultiplier = 1.5
MartingalePipStep = 50
MartingaleMaxTrades = 3
MartingaleMinProfitPips = 20

Trade 1 Buy: 0.01 @ 1.2000
→ Martingale triggered at 1.1950 (-50 pips)
Trade 2 Buy: 0.015 @ 1.1950
→ Martingale triggered at 1.1900 (-50 pips)
Trade 3 Buy: 0.0225 @ 1.1900

At 1.1960:
- Trade 1: -40 pips × 0.01 = -0.4
- Trade 2: +10 pips × 0.015 = +0.15
- Trade 3: +60 pips × 0.0225 = +1.35
- Net = +1.10 (≈ 20 pips profit in weighted terms)

→ ALL trades close at 1.1960!
```

---

## ⚙️ **Full Parameter List**

### 1. VWAP Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `VWAP_ResetPeriod` | Reset period (0=H1,1=H4,2=Daily,3=Weekly,4=Monthly) | 2 |
| `VWAP_StdDevDist` | Band distance in standard deviations | 2.0 |
| `VWAP_ArrowOffset` | Arrow offset in points | 150 |
| `VWAP_UseRealVolume` | Use real volume if available | false |

### 2. RSI Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `RSI_Period` | RSI period | 14 |
| `RSI_Overbought` | Overbought level | 70 |
| `RSI_Oversold` | Oversold level | 30 |
| `PivotStrength` | Pivot detection strength (bars left/right) | 2 |
| `MinPivotDistance` | Minimum distance between pivots in bars | 5 |

### 3. Divergence Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `EnableRegularDivergence` | Enable regular divergence detection | true |
| `EnableHiddenDivergence` | Enable hidden divergence detection | false |
| `MinDivergenceStrength` | Minimum divergence strength (0-100). Only divergences with a strength >= this value are considered valid signals. | 50 |

### 4. Signal Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `SignalAtBarClose` | Evaluate signals at bar close (recommended to prevent repainting) | true |
| `SignalTimeframe` | Timeframe for signal detection | PERIOD_H4 |
| `TradeTimeframe` | Timeframe for trade execution | PERIOD_H4 |

### 5. Lot Size Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `InitialLotSize` | Initial lot size for first trade | 0.01 |

### 6. Martingale Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `MartingaleEnabled` | Enable Martingale | false |
| `MartingaleMaxTrades` | Maximum number of Martingale trades per direction | 3 |
| `MartingalePipStep` | Pip distance between Martingale trades | 50 |
| `MartingaleMultiplier` | Lot multiplier per step | 1.5 |
| `MartingaleMinProfitPips` | Minimum profit in pips to close all trades | 20 |
| `MartingaleRequiresSignal` | Martingale trade requires signal confirmation | true |
| `MartingaleSignalMode` | Signal mode (0=Pips only, 1=Pips+VWAP, 2=Pips+RSI) | 1 |
| `MartingaleMaxTotalLossPips` | Maximum loss in pips for Martingale positions | 200 |

### 7. Order Management Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `StopLossPips` | Stop loss in pips | 50 |
| `TakeProfitPips` | Take profit in pips | 100 |
| `TrailingStopPips` | Trailing stop in pips (0 = disabled) | 0 |
| `OrderComment` | Order comment | "VWAP Divergence" |
| `MagicNumber` | Unique Magic Number | 20260817 |

### 8. Safety Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `MaxSpread` | Maximum spread in points | 30 |
| `MaxSlippage` | Maximum slippage in points | 10 |
| `MaxTotalLoss` | Maximum total loss in account currency (EA STOPS COMPLETELY) | 500 |
| `MaxTradesPerDirection` | Maximum open trades per direction (excluding Martingale) | 1 |

### 9. Display Settings
| Parameter | Description | Default |
|-----------|-------------|---------|
| `ShowDivergenceLines` | Draw divergence lines on chart | true |
| `ShowSignalArrows` | Draw signal arrows on chart | true |
| `ShowInfoPanel` | Show info panel on chart | true |

---

## 🛠️ **Technical Requirements**

### Platform
- **MetaTrader 4 ONLY** (not MT5)
- Compatible with Windows 10/11

### Performance & Stability
- **NO repainting** of signals
- Use `iCustom()` to read VWAP indicator signals
- All parameters must be **optimizable** in Strategy Tester
- **Error handling** with `GetLastError()`
- **Logging** in Experts tab
- The EA must be stable and must not freeze MT4 even during periods of high volatility or when processing many historical bars. The developer should review the VWAP indicator code to ensure it runs efficiently without changing its layout or functionality.

### Code Quality
- **Modular structure:**
  - Signal Engine (VWAP + RSI)
  - Divergence Engine (Pivot detection)
  - Trade Manager (Order open/close)
  - Martingale Manager
  - Risk Manager (MaxLoss monitoring)
- `#property strict` required

- Well-commented code

  • The EA must be stable and must not freeze MT4 even during periods of high volatility or when processing many historical bars

  • The developer is expected to review and optimize the VWAP indicator code for performance without changing its layout or functionality. The indicator currently uses nested loops which may cause performance issues with large history. The developer should implement necessary optimizations to ensure smooth operation while preserving the indicator's visual appearance and signal logic.

  • The EA is primarily designed for XAUUSD (Gold)

  • All pip calculations, stop loss, take profit, Martingale steps, and profit targets must work correctly for XAUUSD

  • XAUUSD has a specific pip value (0.01 for 5-digit brokers) and the EA must handle this correctly

  • All parameters related to pips (StopLossPips, TakeProfitPips, MartingalePipStep, MartingaleMinProfitPips, MartingaleMaxTotalLossPips) must be calculated and applied correctly for this instrument

  • The developer must ensure that  Point  and pip calculations are properly handled for XAUUSD's decimal places


---

## 🛑 **Safety Features**

| Feature | Description |
|---------|-------------|
| **MaxTotalLoss** | If total loss reaches this amount, EA **STOPS ALL TRADING** permanently (until manually reactivated) |
| **MartingaleMaxTotalLossPips** | If Martingale positions reach this loss in pips, all Martingale trades close (EA continues trading) |

**No restrictions:** No `MaxTradesPerDay` restriction. No "only one position per direction" restriction beyond standard Martingale logic (Martingale requires multiple positions).

---

## 📦 **Delivery Requirements**

1. **Source Code:** `.mq4` file
2. **Compiled File:** `.ex4` file
3. **Parameter Set:** Optimized `.set` file
4. **User Guide:** PDF with all parameters explained (in English)
5. **Bugfix Support:** 14 days after delivery
6. **Installation Instructions:** Step-by-step guide

---

## 🔧 **Sample Logic (Pseudocode)**

```mql4
// MARTINGALE SIGNAL LOGIC
if (MartingaleRequiresSignal) {
    switch (MartingaleSignalMode) {
        case 0: // Pips Only
            martingaleSignal = true;
            break;
            
        case 1: // Pips + VWAP Band
            if (direction == BUY) {
                martingaleSignal = (close[i] <= VWAP_LowerBand[i]);
            } else {
                martingaleSignal = (close[i] >= VWAP_UpperBand[i]);
            }
            break;
            
        case 2: // Pips + RSI Level
            if (direction == BUY) {
                martingaleSignal = (RSI[i] < RSI_Oversold);
            } else {
                martingaleSignal = (RSI[i] > RSI_Overbought);
            }
            break;
    }
} else {
    martingaleSignal = true;
}

// ENTRY CONDITIONS
if (MartingaleEnabled && IsLossPosition() && martingaleSignal) {
    OpenMartingaleTrade();
}
```

---

## 📝 **Summary of Martingale Modes**

| Mode | Description | Best For |
|------|-------------|----------|
| **0** | Pips only | Aggressive traders, fast averaging |
| **1** | Pips + VWAP Band | Conservative traders, institutional support/resistance |
| **2** | Pips + RSI Level | Traders who want oversold/overbought confirmation |

---

## 💰 **Budget & Timeline**

- **Budget:** Please provide your quote
- **Timeline:** 2-7 days expected
- **Payment:** MQL5 escrow terms

---

## 📧 **Application Requirements**

Please include in your proposal:
1. **Estimated timeline** and delivery date
2. **Your experience** with Martingale EAs and divergence detection in MT4
3. **Confirmation** that you work with MT4 (not MT5)
4. **Any questions** or clarifications needed
5. **Examples** of similar EAs you have developed

---

## 📎 **Attachment**
- `VWAP_MT4_Gold_Ultimate 2d.mq4` (provided)

---

**Ready to hire!** 🚀
**Platform:** MetaTrader 4 ONLY

**Budget:** Open to negotiation


*********TO ALL APPLICANTS: I am currently on vacation and will be offline for a few hours but will get back to each of you soon again. Thank you so much for applying I will let you know soon and make a decision. Looking forward to working with you.*********

附加的文件:

反馈

1
开发者 1
等级
项目
0
0%
仲裁
0
逾期
0
空闲
2
开发者 2
等级
(109)
项目
181
25%
仲裁
24
17% / 75%
逾期
16
9%
空闲
3
开发者 3
等级
(394)
项目
508
23%
仲裁
60
57% / 25%
逾期
59
12%
已载入
4
开发者 4
等级
项目
0
0%
仲裁
0
逾期
0
空闲
5
开发者 5
等级
(21)
项目
27
7%
仲裁
9
33% / 33%
逾期
1
4%
工作中
6
开发者 6
等级
(62)
项目
77
58%
仲裁
6
67% / 17%
逾期
1
1%
已载入
7
开发者 7
等级
(17)
项目
21
19%
仲裁
5
40% / 40%
逾期
0
空闲
8
开发者 8
等级
(62)
项目
90
29%
仲裁
24
13% / 58%
逾期
7
8%
工作中
9
开发者 9
等级
(612)
项目
715
33%
仲裁
46
48% / 41%
逾期
14
2%
繁忙
10
开发者 10
等级
(1)
项目
1
0%
仲裁
0
逾期
0
空闲
发布者: 1 代码
11
开发者 11
等级
项目
0
0%
仲裁
0
逾期
0
空闲
12
开发者 12
等级
项目
0
0%
仲裁
0
逾期
0
空闲
13
开发者 13
等级
(25)
项目
31
13%
仲裁
13
0% / 77%
逾期
9
29%
空闲
14
开发者 14
等级
(4)
项目
5
40%
仲裁
0
逾期
0
工作中
发布者: 1 代码
15
开发者 15
等级
(1)
项目
1
0%
仲裁
1
0% / 0%
逾期
0
工作中
16
开发者 16
等级
(3)
项目
8
63%
仲裁
0
逾期
0
空闲
17
开发者 17
等级
(205)
项目
266
21%
仲裁
24
50% / 17%
逾期
0
工作中
18
开发者 18
等级
(170)
项目
182
46%
仲裁
3
33% / 33%
逾期
1
1%
已载入
19
开发者 19
等级
(1)
项目
1
0%
仲裁
1
0% / 100%
逾期
0
空闲
20
开发者 20
等级
(1)
项目
1
100%
仲裁
0
逾期
0
空闲
21
开发者 21
等级
(13)
项目
31
23%
仲裁
8
25% / 63%
逾期
5
16%
空闲
22
开发者 22
等级
(11)
项目
11
0%
仲裁
5
20% / 60%
逾期
2
18%
空闲
23
开发者 23
等级
(51)
项目
61
38%
仲裁
15
27% / 60%
逾期
1
2%
空闲
24
开发者 24
等级
项目
0
0%
仲裁
0
逾期
0
空闲
25
开发者 25
等级
(6)
项目
8
38%
仲裁
1
100% / 0%
逾期
2
25%
空闲
26
开发者 26
等级
项目
0
0%
仲裁
0
逾期
0
空闲
27
开发者 27
等级
项目
0
0%
仲裁
0
逾期
0
空闲
28
开发者 28
等级
(64)
项目
144
46%
仲裁
20
40% / 20%
逾期
32
22%
空闲
29
开发者 29
等级
(32)
项目
33
42%
仲裁
0
逾期
3
9%
空闲
30
开发者 30
等级
项目
0
0%
仲裁
0
逾期
0
空闲
31
开发者 31
等级
(4)
项目
7
57%
仲裁
1
100% / 0%
逾期
0
空闲
32
开发者 32
等级
(6)
项目
8
38%
仲裁
1
0% / 100%
逾期
0
空闲
33
开发者 33
等级
项目
0
0%
仲裁
0
逾期
0
空闲
34
开发者 34
等级
项目
0
0%
仲裁
0
逾期
0
空闲
35
开发者 35
等级
项目
0
0%
仲裁
0
逾期
0
空闲
发布者: 1 代码
相似订单
[20:54, 8/17/2026] Abhi NEW: Experienced MQL5 Coder Wanted — Debug & Go-Live Support for XAUUSD Grid Strategy [20:56, 8/17/2026] Abhi NEW: I have a working MQL5 Expert Advisor (EA) for a Gold (XAUUSD) grid-based trading strategy that needs professional review, modification, and support getting it correctly running live. What I have: - Existing .mq5 source code for the strategy - A detailed strategy specification
I am looking for a professional and market-savvy MQL developer to build a disciplined, stable Scalping Expert Advisor (EA). The ideal developer must have a solid understanding of Trend Identification, Fibonacci Levels, and Technical Indicators , alongside strict risk management implementation. Key Focus Areas & Developer Requirements: Market & Analysis Expertise: ⚬ Deep understanding of Trend direction (Market
Decompile EA 50 - 200 USD
I have an EA I want to Decompile or create EA Having same logic and same conditions for EA its an fixed SL TP bot I will provide a copy of EA just understand the logic and create or decompile the EA
I need an expert Ninjatrader8 developer that can build this indicator. Can you build indicator like this? Ather https://share.google/HaxK5snnOWFR08ghd If you know you can do this send me message or bid to my proposal
profitable EAs wanted with at least 3 to 5 years backtest. you be submit your proofs such as graphic results, backtesting results, and your demo or weekly the eas has traded
Requirements Specification GoldV16 V0 – MT5 XAUUSD Netting EA 1. Platform: - MetaTrader 5 - MQL5 - XAUUSD - NETTING account 2. Position rule: - Only ONE XAUUSD position may be open at any time. - Fixed lot only. - No Martingale. - No automatic lot increase. 3. Stop Loss: - Stop Loss must be sent immediately when a trade opens. - Default SL distance: 1.00 USD in gold price. - SL distance must be adjustable in Inputs
MQL5 developer needed to code a macro-driven gold trading Expert Advisor for MetaTrader. Body: We have a documented macro-driven trading strategy for gold that needs to be converted into a working MetaTrader Expert Advisor. Experience integrating external data sources, such as economic calendar events or interest rate and dollar index data, into MQL5 is required. An N.D.A. must be signed before strategy details are
i need someone that can make me an EA really easy with the martingala system?, I am looking for something that doesn't exceed 5 trades for the martingale, I think I did it, but it only works for propfirms, So i need to develop it on ninja trader I have identified a very very simple strategy but it only works on propfirms, with only two propfirm accounts, i absolutely need account A and account, And they have to open
Hi, I’m looking for an experienced MT5/MQL5 developer to assess and potentially develop a custom trade copier. The requirement is to copy trades from Vantage Web Copy Trading to an MT5 account in real time. Core requirements: Source: Vantage Web Copy Trading Destination: MT5 Instrument: XAUUSD only Copy trade opening and closing Copy partial closures No SL/TP required MT5 account can be with Vantage or another
Swing Breaks & AMD Expert Advisor The Swing Breaks & AMD Expert Advisor is an automated trading system designed around two core market-structure concepts: Swing Breaks and the AMD (Accumulation, Manipulation, Distribution) model . The EA is designed to analyze price action, identify meaningful swing structures, detect potential breaks of those structures, and evaluate the surrounding market behavior for possible AMD

项目信息

预算
50+ USD
VAT (19%): 9.5 USD
总计: 60 USD
开发人员
45 USD

客户

(37)
所下订单46
仲裁计数0