EMA TREND PULLBACK AND VOLATILITY ENGINE

작업 종료됨

실행 시간 20 시간

명시

TITLE: MT5 Multi-Timeframe Trend Pullback EA with ATR Risk Management

BUDGET: $25 USD
PLATFORM: MetaTrader 5 (MQL5)

DESCRIPTION:
I need a professional, clean, and fully commented Expert Advisor (EA) developed for MT5. The strategy is a multi-timeframe trend-following system that trades pullbacks using Exponential Moving Averages (EMA), the Relative Strength Index (RSI), and Average True Range (ATR) for dynamic risk management.

The developer must deliver both the compiled (.ex5) and the raw source code (.mq5) with exclusive intellectual property rights remaining with the customer.

---

### 1. STRATEGY LOGIC & INPUTS

#### Indicators & Timeframes:
*   **Trend Filter Timeframe (HTF):** 1-Hour (H1) or 4-Hour (H4) [User Input]
*   **Trend Filter Indicator:** 200 Exponential Moving Average (EMA) applied to Close.
*   **Entry Timeframe (LTF):** 15-Minute (M15) [User Input]
*   **Trigger Indicator:** 14-period Relative Strength Index (RSI) applied to Close.
*   **Volatility Indicator:** 14-period Average True Range (ATR) on the Entry Timeframe.

---

### 2. ENTRY RULES

#### A. Buy (Long) Entry Conditions:
1.  **Trend Filter:** The current market price on the H1 chart must be ABOVE the H1 200 EMA.
2.  **Pullback Trigger (M15):** The RSI (14) on the M15 chart must cross BELOW the 30 level (oversold) and then cross back ABOVE 30.
3.  **Execution:** Enter a BUY order at the open of the very next M15 candle after the RSI cross-back confirmation.

#### B. Sell (Short) Entry Conditions:
1.  **Trend Filter:** The current market price on the H1 chart must be BELOW the H1 200 EMA.
2.  **Pullback Trigger (M15):** The RSI (14) on the M15 chart must cross ABOVE the 70 level (overbought) and then cross back BELOW 70.
3.  **Execution:** Enter a SELL order at the open of the very next M15 candle after the RSI cross-back confirmation.

---

### 3. STRICT RISK MANAGEMENT & EXIT RULES (CRITICAL)

The EA must automatically calculate lot sizes and protect capital using the following rules:

*   **Risk per Trade:** [User Input, Default = 1.0%] of total Account Balance.
*   **Dynamic Stop Loss (SL):** 
    $$SL = \text{Entry Price} \pm (1.5 \times \text{ATR}(14))$$
*   **Dynamic Take Profit (TP):** 
    $$TP = \text{Entry Price} \pm (3.0 \times \text{ATR}(14))$$
    *(This guarantees a strict 1:2 Risk-to-Reward Ratio).*
*   **Auto-Lot Calculation:** The EA must automatically calculate the contract/lot size based on the 1% risk of the balance and the distance to the SL in points.
*   **Breakeven Trailing:** Once the trade reaches 1:1 Risk-to-Reward (halfway to TP), the EA must automatically move the Stop Loss to the Entry Price (Breakeven + Spread).
*   **One Trade at a Time:** No grid, no martingale. Only 1 open trade allowed per currency pair at any given time.
*   **Daily Max Drawdown Protection:** [User Input, Default = 3.0%]. If the daily equity drawdown reaches 3% of the starting daily balance, close all open trades, cancel pending orders, and disable the EA for the day.
*

응답함

1
개발자 1
등급
(108)
프로젝트
178
25%
중재
24
17% / 75%
기한 초과
16
9%
무료
2
개발자 2
등급
(1)
프로젝트
1
0%
중재
0
기한 초과
0
작업중
게재됨: 1 코드
비슷한 주문
I want to build a fundamental news trading bot that trade off economic news data, as we know every economic news data released always have effect on the asset associated with it, so this bot will take a trade instantly based on the news data released either to buy or sell, it will come with good money management and also SL and TP target based on price and pips value
I have a EA/indicator that I want built. I should say 1st off dont know how to code myself so I will be using AI to verify that the source code is complete and matches the documents spec or if better so if you can not truly do the job do not waste either of out time. This is a idea I came.up wit and used AI to produce a framework for it.... and of course AI isn't 100% accurate so I need a knowledgeable quantitative
Specification : 1. Goal I am commissioning a mean-reversion grid Expert Advisor for XAUUSD on MT5. The deliverable is the complete, commented .mq5 source (strictly personal usel). Offers limited to compiled .ex5 will not be considered. 2. Required framework (non-negotiable) 2.1. Works natively on M5; signals evaluated on closed bars; symmetric long/short. 2.2. Entry logic built on Bollinger Bands + Moving Average
TumiiFX 30 - 20000 USD
1. Use two EMAs: 20 and 50. If EMA 20 is above EMA 50 → uptrend (look for buys) If EMA 20 is below EMA 50 → downtrend (look for sells) 2. Wait for a pullback into the area between the two EMAs. - For buys: price must touch or move between EMA 20 and EMA 50 during the last few candles. - For stils: same idea, but in a downtrend. 3. Entry signal: Buy: a bullish engulfing candle in an uptrend after the pullback
Bot 30 - 80 USD
I am looking for an experienced MQL5 developer to create a fully automated Expert Advisor (EA) for MetaTrader 5 based on a Price Action strategy. The bot needs to automatically identify specific candlestick formations and market structure levels, execute trades, and manage risk using a dynamic trailing stop.The EA should monitor the chart for the following price action setup:Market Structure / Trend Filter:The bot
I am looking for an experienced MQL5 developer to build a high-frequency (HFT) latency arbitrage Expert Advisor for Pepperstone MT5 , using LMAX as the leading price feed. The initial focus will be on US30 (Dow Jones) , and if the strategy proves successful, I want the EA to be easily expandable to additional symbols such as NAS100, GER40, XAUUSD, major forex pairs, and other supported instruments. The EA should
Master mind 30+ USD
Start ↓ Detect Trend (H4) ↓ Confirm Structure (H1) ↓ Wait for Pullback ↓ Check Indicators ↓ Calculate Confidence Score ↓ Score ≥ 80? ├── No → Wait └── Yes ↓ Calculate Lot Size ↓ Place Order ↓ Set Stop Loss ↓ Set Take Profit ↓ Manage Trade ↓ Move to Break-even ↓ Trail Stop ↓ Close Trade. IF Price > EMA200 (H4) AND EMA50 > EMA200 (H4) AND ADX > 25 AND RSI between 55 and 70 AND MACD Main > Signal AND Bullish engulfing
A robot 50+ USD
HIGH-FREQUENCY M5/M15 CONCURRENT ENTRY SNIPER import time class HighFrequencySniper: def __init__(self): self.target_profit = 25.00 # Targeted Delta Move self.max_execution_time = 3600 # 1 Hour Sandbox (Seconds) self.lot_allocation = "CALIBRATED_TO_RISK" def execute_hft_scan(self, current_price, m5_rsi, m15_order_block): print(f"[SCANNING] Current Kernel Metric: ${current_price:.2f
# HIGH-FREQUENCY M5/M15 CONCURRENT ENTRY SNIPER import time class HighFrequencySniper: def __init__(self): self.target_profit = 25.00 # Targeted Delta Move self.max_execution_time = 3600 # 1 Hour Sandbox (Seconds) self.lot_allocation = "CALIBRATED_TO_RISK" def execute_hft_scan(self, current_price, m5_rsi, m15_order_block): print(f"[SCANNING] Current Kernel Metric: ${current_price:.2f}")
I need a trading bot, please i need this project urgently and when messaing me kindly send me samples of past works and dont forget i need the project to be done as soon as possible

프로젝트 정보

예산
30+ USD
기한
에서 1  3 일