MT4 EA – Pending Orders on Objects (Touch Trigger) + Risk% + RR

MQL4 Indicadores Experts

Termos de Referência

Hi ,
I need an MT4 EA with the following requirements (BUY only):

  1. BUY only: The EA must open BUY trades only. No sell orders at all.

  2. Pending orders on objects (Touch trigger, no candle close):

  • I draw objects on the chart: Trendline / Rectangle (Box) / Horizontal Line.

  • The EA places a BUY pending order exactly at the object price so it triggers when price touches the object.

  • For a trendline, the EA must continuously update the pending order price to match the trendline value (since it is sloped).

  • The EA must automatically choose the correct pending type (Buy Limit / Buy Stop) depending on whether the object price is below or above the current price.

  1. Risk-based lot sizing:

  • Input: RiskPercent (e.g., 1%).

  • Lot size must be calculated so that if SL is hit, the loss equals RiskPercent of the account balance.

  1. Stop Loss (Semafor + clamp):

  • SL is based on the latest Semafor Low.

  • Clamp SL distance:

    • If SL distance > 10 pips → use 10 pips

    • If SL distance < 5 pips → use 5 pips

    • Otherwise use the actual distance

  • Risk% must remain correct even if SL is clamped.

  1. Take Profit by RR:

  • Input: BaseRR (e.g., 3.0).

  • TP = BaseRR * SL .

  1. Break-even:

  • At 1R, move SL to Entry + BE_Offset pips (offset is an input to cover costs).

  1. Recovery (loss carry):

  • If there are previous losses, the next trade increases TP to recover them.

  • Cap the added recovery at 4R max per trade; remaining losses stay for later trades.

Best regards,


Respondido

1
Desenvolvedor 1
Classificação
(627)
Projetos
989
47%
Arbitragem
33
36% / 36%
Expirado
98
10%
Trabalhando
Publicou: 6 códigos
2
Desenvolvedor 2
Classificação
(253)
Projetos
316
29%
Arbitragem
34
26% / 65%
Expirado
10
3%
Livre
3
Desenvolvedor 3
Classificação
(75)
Projetos
110
51%
Arbitragem
25
28% / 52%
Expirado
9
8%
Trabalhando
4
Desenvolvedor 4
Classificação
(4)
Projetos
3
33%
Arbitragem
2
0% / 100%
Expirado
0
Livre
5
Desenvolvedor 5
Classificação
(509)
Projetos
977
74%
Arbitragem
27
19% / 67%
Expirado
101
10%
Livre
Publicou: 1 artigo, 6 códigos
6
Desenvolvedor 6
Classificação
(75)
Projetos
80
6%
Arbitragem
46
11% / 54%
Expirado
7
9%
Trabalhando
7
Desenvolvedor 7
Classificação
(3)
Projetos
1
100%
Arbitragem
3
0% / 100%
Expirado
0
Livre
8
Desenvolvedor 8
Classificação
(1)
Projetos
1
100%
Arbitragem
0
Expirado
0
Livre
9
Desenvolvedor 9
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
10
Desenvolvedor 10
Classificação
(42)
Projetos
112
56%
Arbitragem
2
50% / 0%
Expirado
3
3%
Livre
Publicou: 1 código
11
Desenvolvedor 11
Classificação
(16)
Projetos
20
0%
Arbitragem
10
0% / 80%
Expirado
6
30%
Livre
12
Desenvolvedor 12
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
13
Desenvolvedor 13
Classificação
(2)
Projetos
3
0%
Arbitragem
1
0% / 0%
Expirado
2
67%
Livre
14
Desenvolvedor 14
Classificação
(255)
Projetos
262
30%
Arbitragem
0
Expirado
3
1%
Livre
Publicou: 2 códigos
15
Desenvolvedor 15
Classificação
(6)
Projetos
7
14%
Arbitragem
1
0% / 100%
Expirado
1
14%
Livre
16
Desenvolvedor 16
Classificação
(187)
Projetos
243
20%
Arbitragem
22
50% / 18%
Expirado
0
Trabalhando
17
Desenvolvedor 17
Classificação
(271)
Projetos
553
50%
Arbitragem
57
40% / 37%
Expirado
227
41%
Trabalhando
18
Desenvolvedor 18
Classificação
(32)
Projetos
35
34%
Arbitragem
5
0% / 80%
Expirado
0
Trabalhando
Publicou: 2 códigos
19
Desenvolvedor 19
Classificação
(32)
Projetos
33
61%
Arbitragem
1
100% / 0%
Expirado
1
3%
Trabalhando
Publicou: 5 códigos
20
Desenvolvedor 20
Classificação
(1)
Projetos
1
0%
Arbitragem
0
Expirado
0
Livre
21
Desenvolvedor 21
Classificação
(2)
Projetos
3
33%
Arbitragem
1
0% / 100%
Expirado
0
Livre
Pedidos semelhantes
Hi, I hope you doing Greate, Let me share details , so the original EA already working but you can check and verify everything fine.First you verify that all original EA features are working correctly then add a user dashboard showing the number of detected zones, buy sell both none status, and an on off button. also ensure mitigated zones disappear properly and that trades follow the zone rules, and integrate the
I need a high-speed Expert Advisor (EA) for MT5 designed specifically for XAUUSD (Gold) scalping. The bot should focus on fast entries and quick profits with high efficiency. Main requirements: 1. Symbol: XAUUSD (Gold only). 2. Platform: MetaTrader 5. 3. Strategy type: Scalping (fast trades, quick profit). 4. The bot should open trades frequently based on fast market movements. 5. Small Take Profit (quick profit
Gold_m1_ob_bot. 30+ USD
import MetaTrader5 as mt5 import pandas as pd import time from datetime import datetime # ================== CONFIG ================== SYMBOL = "XAUUSD" TIMEFRAME = mt5.TIMEFRAME_M1 LOT = 0.01 MAX_OBS = 12 # keeps signals frequent ATR_PERIOD = 14 IMPULSE_FACTOR = 1.5 # strong candle = impulse SESSION_START = 8 # GMT (London open) SESSION_END = 20 # GMT (NY close) MAX_SPREAD = 30 #
I have existing compiled indicator and script files (EX4) and would like to have them recreated in both MQL4. ⚠️ Important: This project is NOT for decompiling or reverse engineering. Instead, the goal is to: Analyze the behavior and output of the provided files Recreate equivalent functionality from scratch Deliverables: 1 MQL4 indicator source code (.mq4) 1 MQL4 script source code (.mq4) Requirements: The recreated
I need a good programmer to help convert an existing indicator to a trading EA that can work on both MT4 and MT5. The expected features on the EA is as follows: Max Spread: Magic Number: Take Profit: Stop Loss: Trailing Stop: Fixed Lot Size: Money Management: false/true Min Lot Size: Max Lot Size: Risk to Trade %: Daily Profit Target %: Add news filter. Get my jobs with source code
A perfect indicator 30 - 80 USD
Merge nearby zones yes/no Alert on/off Label on/off Show only current relevant zones near price yes/no Distance filter from current price Zone transparency Colors Preferred Output on Chart: I want the indicator to show only: the strongest nearby support zones under price the strongest nearby resistance zones above price major higher timeframe zones clean chart view I do not want excessive clutter. Entry Assistance
Criei um Robô para a venda alta precisão que automatiza a estratégia de correção média de Larry Williams. Possui filtros de tendência seletiva, controle de lote por risco percentual e execução rápida. Compatível com contas Hedge e Netting. Configuração simples e otimizada para mercados de alta volatilidade. *55(16) 993786056
SMC ORDER BLOCK 30 - 60 USD
I want already build FULLY AUTOMATED order block MT5 XAUUSD HTF H4 ENTRY LTF M15 - Show result on live account. m15 ob entry in the direction of h4 ob bias the developper to provide source code in the end
I need an MT5 Expert Advisor built as a high-precision volumizer for Forex. Its core purpose is to generate controlled trading volume for rebates, while still maintaining low-risk account growth. I am not looking for aggressive profit chasing. I am looking for a stable, intelligent EA that can produce volume in a disciplined way without damaging the account. The ideal system should trade major currency pairs, avoid
1. IF price forms: - Higher highs + higher lows → TREND = BUY - Lower highs + lower lows → TREND = SELL ELSE → NO TRADE 2. IF: - Trend = BUY - Price retraces to support zone - Bullish engulfing candle forms - TDI green crosses above red (optional) THEN: - Execute BUY 3. IF: - Trend = SELL - Price retraces to resistance - Bearish engulfing forms - TDI confirms THEN: - Execute SELL 4. Risk per trade = 1% of account Lot

Informações sobre o projeto

Orçamento
30+ USD
Prazo
de 1 para 3 dias