Build a MQL5 Time-based Breakout EA that trades Multiple times (3) a day

Lavoro terminato

Tempo di esecuzione 7 giorni
Feedback del dipendente
Superb specification file, well detailed and clear.
Feedback del cliente
Competent developer who pays attention to detail and delivers exactly what you are need. Great communicator and a pleasure to work with. Highly recommend.

Specifiche

For each Range Breakout

  1.            Open two pending orders above (BUY) and below (SELL) the breakout range.
  2.        Once a trade is entered in one direction, the EA cancels the pending order in the opposite direction.
  3.             Stop Loss value is set to the percentage of the Range Breakout.
  4.        Take profit value is set to the percentage of the Stop Loss.
  5.             Martingale loss recovery option for losing trades.
  6.            Must work for Forex, Indices, Commodities, and Stocks.
  7.            Must work on all Timeframes.
  8.            Must work with a VPS.   

 

PARAMETERS (Default settings)

TRADING RANGES & TIMES

Minimum opening range                                                        0

(If the opening range is LOWER than the value above, then EA will NOT OPEN A TRADE)

Maximum opening range                                                      5000

(If the opening range is HIGHER than the value above, then EA will NOT OPEN A TRADE)

Trade Range breakout 1                                                     TRUE/FALSE

Range 1 start time                                                                   03:00

Range 1 end time                                                                     03:15

Trade Range breakout 2                                                     TRUE/FALSE

Range 2 start time                                                                   10:00

Range 2 end time                                                                    10:15

Trade Range breakout 3                                                     TRUE/FALSE

Range 3 start time                                                                  16:30

Range 3 end time                                                                    16:45

Close all trades at stop trading time                                 TRUE/FALSE

Stop Trading time                                                                    22:30

 (If the value above is set to TRUE, then all trades will be closed at “stop trading time” for the rest of the day. If the value is set to FALSE, then all trades will be proceed until they hit Stop loss or Take Profit)

Cancel all pending orders at stop trading time                  TRUE/FALSE

(If the value above is set to TRUE, then all pending trades will be cancelled at “stop trading time”. If the value is set to FALSE, then all trades will be proceed until they hit Stop loss or Take Profit)

Activate on bar close                                                           TRUE/FALSE

Offset distance for pending orders                                         15

(Number of pips added to pending orders to offset Spreads & slippage)

RISK

Percent of opening range to use as Stop Loss                        110%

(Adjustable percentage value of the opening range to set as Stop Loss)

Amount of Money to risk per Trade using Stop Loss              $100

Take Profit (percentage of stop loss)                                      100%

 

LOSS RECOVERY (Martingale)

Martingale                                                                               TRUE/FALSE

Add Multiple Lots                                                                        2

(If the value is set to TRUE, In the event of a losing trade, the EA will add a multiple (number above) of the lot size on the next trade. This will continue until the EA encounters a winning trade. If value is set to FALSE, then loss recovery is OFF)


File:

Con risposta

1
Sviluppatore 1
Valutazioni
(71)
Progetti
103
20%
Arbitraggio
6
0% / 83%
In ritardo
3
3%
Gratuito
2
Sviluppatore 2
Valutazioni
(62)
Progetti
90
29%
Arbitraggio
24
13% / 58%
In ritardo
7
8%
In elaborazione
3
Sviluppatore 3
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
Pubblicati: 9 codici
4
Sviluppatore 4
Valutazioni
(78)
Progetti
246
74%
Arbitraggio
7
100% / 0%
In ritardo
1
0%
Gratuito
Pubblicati: 1 articolo
5
Sviluppatore 5
Valutazioni
(37)
Progetti
59
27%
Arbitraggio
26
19% / 54%
In ritardo
10
17%
In elaborazione
Pubblicati: 1 codice
6
Sviluppatore 6
Valutazioni
(271)
Progetti
553
50%
Arbitraggio
57
40% / 37%
In ritardo
227
41%
In elaborazione
7
Sviluppatore 7
Valutazioni
(610)
Progetti
710
33%
Arbitraggio
45
49% / 42%
In ritardo
14
2%
In elaborazione
8
Sviluppatore 8
Valutazioni
(53)
Progetti
91
52%
Arbitraggio
2
0% / 50%
In ritardo
1
1%
Gratuito
Ordini simili
I have a High-Frequency Trading (HFT) Expert Advisor for both MT4 and MT5 designed primarily for US30 (Dow Jones Index) . The EA performs consistently and profitably on demo accounts, but when I run it on an IC Markets Raw or Standard live account, it starts generating losses under what appear to be the same trading conditions. At this time, I cannot provide the source code (.mq4/.mq5). I can only provide the
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
Ниже представлено готовое, технически выверенное Техническое задание (ТЗ) . Вы можете полностью скопировать этот текст и разместить его на бирже фриланса (например, MQL5.com в разделе «Фриланс» или на Smart-Lab). Данное ТЗ написано на профессиональном языке, понятном разработчикам торговых систем для терминала QUIK (на языке Lua) . ТЕХНИЧЕСКОЕ ЗАДАНИЕ (ТЗ) Разработка мультивалютного торгового робота для терминала
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
EA Crafter 500+ USD
Act as a professional Quantitative Developer and Risk Manager. I want to build a systematic trading strategy rulebook that prioritizes capital preservation and statistical edge over raw performance. Please generate a structured trading strategy using the following framework: 1. ASSET CLASS & TIMEFRAME: - Asset: [e.g., Apple (AAPL), Bitcoin (BTC), or EUR/USD] - Timeframe: [e.g., 5-minute, 1-hour, Daily] 2. CORE
Part 1: Project setup Input settings (risk, stop loss, take profit, EMA periods) Indicator initialization Trade management framework Part 2: Trading logic EMA crossover detection Buy/Sell entry rules One-trade-per-symbol check Part 3: Risk management Automatic lot size calculation Stop-loss and take-profit placement Trade execution and error handling Part 4: Final touches On-screen information Optimization
Hello, I am reopening this project with a fully updated and clarified specification. I am looking for a high‑level MQL5 developer who can deliver a clean, stable, and professional Phase 1 version of my: Institutional‑Grade Multi‑Currency MT5 EA (A2SR + SMC + Smart Recovery + Smart Grid + Liquidity + Volatility + Safety Filters) This EA is not a simple indicator conversion or a basic strategy. It is a structured

Informazioni sul progetto

Budget
30 - 100 USD
Scadenze
da 1 a 5 giorno(i)