Channel breakout

Tarea técnica

1. Project Overview

Name: BB Channel Trading EA
Objective: Execute reversal trades based on price action (engulfing patterns and liquidity sweeps) at the extremes defined by Bollinger Bands. Trades will be taken when price breaks volatility bounds, indicating potential exhaustion and reversal.


2. Functional Components

2.1 Bollinger Bands Channel

  • Purpose: Identify overbought and oversold zones.

  • Indicator: Custom Bollinger Bands (BB.ex5).

  • Parameters:

    • BBPeriod (int; default: 20)

    • BBShift (int; default: 0)

    • BBDeviation (double; default: 2.0)

  • Buffers:

    • Upper Band — buffer index 1

    • Lower Band — buffer index 2

2.2 Liquidity Sweep Detection

  • Purpose: Confirm break of local high/low, indicating possible stop run.

  • Parameter: LookbackBars (int; default: 5)

  • Logic:

    • Long: current candle’s low < lowest low of prior LookbackBars .

    • Short: current candle’s high > highest high of prior LookbackBars .

2.3 Engulfing Pattern Detection

  • Purpose: Confirm strong reversal candle.

  • Rules:

    • Bullish Engulfing:

      • Current candle is bullish ( Close > Open )

      • Its body wicks fully exceed the previous candle’s body & wicks:

        • Open[current] < Close[previous]

        • Close[current] > Open[previous]

        • High[current] > High[previous]

        • Low[current] < Low[previous]

    • Bearish Engulfing: Reverse logic for a bearish bar.


3. Trade Logic

3.1 Entry Conditions

  • Long Trade:

    1. Close[lastBar] < LowerBand

    2. Liquidity sweep (new local low)

    3. Bullish engulfing pattern

  • Short Trade:

    1. Close[lastBar] > UpperBand

    2. Liquidity sweep (new local high)

    3. Bearish engulfing pattern

3.2 Trade Execution

  • Lot Size: LotSizeMultiplier (double; default: 0.1)

  • Stop Loss (SL):

    • Long: Low of current bar

    • Short: High of current bar

  • Take Profit (TP):

    • Long: Close + (Close - SL) * RiskRewardRatio

    • Short: Close - (SL - Close) * RiskRewardRatio


4. Input Parameters

Parameter Type Default Value Description
LookbackBars int 5 Bars to consider for liquidity sweep
RiskRewardRatio double 2.0 SL–TP distance ratio
LotSizeMultiplier double 0.1 Trade volume multiplier
BBPeriod int 20 Bollinger Bands period
BBShift int 0 Bollinger Bands shift
BBDeviation double 2.0 Bollinger deviation multiplier

5. Platform & Trade Environment

  • Platform: MetaTrader 5 (MT5)

  • Dependencies:

    • Bollinger Bands indicator ( BB.ex5 ) in MQL5/Indicators

  • Trading Conditions:

    • Auto trading enabled

    • EA Properties → “Allow live trading” enabled

    • Broker’s min lot size must be ≤ LotSizeMultiplier

  • Chart Timeframes: M5–H1 recommended


6. Error Handling & Safeguards

  • Price Arrays: Use CopyOpen() , CopyClose() , CopyHigh() , CopyLow() to fill buffers; abort if any fail.

  • Indicator Buffers: Use CopyBuffer() for upper/lower bands; abort if empty or EMPTY_VALUE .

  • Array Bounds: Check bar + 1 < ArraySize(...) before intact comparisons.

  • Valid SL / TP: Ensure TP/SL calculations produce valid, non-zero values.


7. Debugging & Logging

  • Print key values:

    • Close[lastBar] , Upper , Lower

    • Results of liquiditySweep() and isBullishEngulfing()

  • Log trade attempts and any rejection (via Expert and Journal tabs).


8. Future Enhancements (Optional)

  • Trailing Stop: Adjustable trailing stop logic based on channel midline.

  • Trade Flip Logic: Exit long and immediately open short (and vice versa) on opposite signal.

  • Multi-Position Mode: Allow multiple simultaneous trades (e.g., hedging).

  • Optimizations: Use Strategy Tester to optimize BBPeriod , BBDeviation , RiskRewardRatio .


Han respondido

1
Desarrollador 1
Evaluación
(94)
Proyectos
137
17%
Arbitraje
4
50% / 25%
Caducado
12
9%
Trabaja
2
Desarrollador 2
Evaluación
(13)
Proyectos
17
18%
Arbitraje
3
67% / 0%
Caducado
0
Libre
3
Desarrollador 3
Evaluación
(75)
Proyectos
123
43%
Arbitraje
12
33% / 50%
Caducado
17
14%
Libre
4
Desarrollador 4
Evaluación
(109)
Proyectos
137
43%
Arbitraje
8
38% / 38%
Caducado
6
4%
Libre
5
Desarrollador 5
Evaluación
(8)
Proyectos
10
20%
Arbitraje
0
Caducado
0
Ocupado
6
Desarrollador 6
Evaluación
(20)
Proyectos
26
38%
Arbitraje
2
50% / 50%
Caducado
2
8%
Libre
7
Desarrollador 7
Evaluación
(2248)
Proyectos
2835
62%
Arbitraje
118
46% / 25%
Caducado
428
15%
Libre
8
Desarrollador 8
Evaluación
(36)
Proyectos
38
11%
Arbitraje
2
50% / 50%
Caducado
2
5%
Trabaja
9
Desarrollador 9
Evaluación
(254)
Proyectos
341
71%
Arbitraje
12
42% / 25%
Caducado
12
4%
Libre
Ha publicado: 17 ejemplos
10
Desarrollador 10
Evaluación
(415)
Proyectos
656
33%
Arbitraje
31
74% / 6%
Caducado
20
3%
Libre
11
Desarrollador 11
Evaluación
(462)
Proyectos
907
76%
Arbitraje
25
16% / 68%
Caducado
99
11%
Libre
Ha publicado: 1 artículo, 6 ejemplos
12
Desarrollador 12
Evaluación
(325)
Proyectos
535
67%
Arbitraje
52
21% / 38%
Caducado
169
32%
Trabaja
Ha publicado: 1 ejemplo
13
Desarrollador 13
Evaluación
Proyectos
1
0%
Arbitraje
1
0% / 0%
Caducado
0
Libre
14
Desarrollador 14
Evaluación
(279)
Proyectos
330
51%
Arbitraje
12
42% / 0%
Caducado
18
5%
Trabajando
15
Desarrollador 15
Evaluación
(51)
Proyectos
69
35%
Arbitraje
1
100% / 0%
Caducado
0
Libre
16
Desarrollador 16
Evaluación
(322)
Proyectos
497
67%
Arbitraje
5
40% / 0%
Caducado
4
1%
Libre
Ha publicado: 8 ejemplos
17
Desarrollador 17
Evaluación
(6)
Proyectos
6
17%
Arbitraje
2
0% / 0%
Caducado
1
17%
Trabajando
18
Desarrollador 18
Evaluación
(11)
Proyectos
16
31%
Arbitraje
3
67% / 0%
Caducado
0
Libre
19
Desarrollador 19
Evaluación
(10)
Proyectos
13
0%
Arbitraje
1
0% / 100%
Caducado
2
15%
Trabaja
20
Desarrollador 20
Evaluación
Proyectos
1
0%
Arbitraje
3
33% / 33%
Caducado
0
Trabaja
21
Desarrollador 21
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
22
Desarrollador 22
Evaluación
(7)
Proyectos
14
29%
Arbitraje
1
100% / 0%
Caducado
4
29%
Libre
23
Desarrollador 23
Evaluación
(359)
Proyectos
637
26%
Arbitraje
91
71% / 13%
Caducado
12
2%
Trabajando
Ha publicado: 1 ejemplo
24
Desarrollador 24
Evaluación
(8)
Proyectos
12
0%
Arbitraje
22
0% / 77%
Caducado
4
33%
Libre
25
Desarrollador 25
Evaluación
(11)
Proyectos
11
18%
Arbitraje
1
0% / 0%
Caducado
1
9%
Libre
26
Desarrollador 26
Evaluación
(368)
Proyectos
472
24%
Arbitraje
51
61% / 20%
Caducado
53
11%
Trabajando
27
Desarrollador 27
Evaluación
(17)
Proyectos
19
26%
Arbitraje
2
50% / 0%
Caducado
1
5%
Libre
Ha publicado: 2 ejemplos
28
Desarrollador 28
Evaluación
(4)
Proyectos
2
0%
Arbitraje
1
0% / 0%
Caducado
1
50%
Trabaja
29
Desarrollador 29
Evaluación
(14)
Proyectos
15
0%
Arbitraje
1
0% / 0%
Caducado
0
Trabaja
30
Desarrollador 30
Evaluación
(3)
Proyectos
3
0%
Arbitraje
0
Caducado
0
Ocupado
31
Desarrollador 31
Evaluación
(84)
Proyectos
115
70%
Arbitraje
5
80% / 0%
Caducado
11
10%
Libre
32
Desarrollador 32
Evaluación
(2596)
Proyectos
3275
67%
Arbitraje
77
48% / 14%
Caducado
342
10%
Libre
Ha publicado: 1 ejemplo
33
Desarrollador 33
Evaluación
(291)
Proyectos
521
36%
Arbitraje
62
34% / 35%
Caducado
187
36%
Trabajando
34
Desarrollador 34
Evaluación
(1)
Proyectos
1
0%
Arbitraje
0
Caducado
0
Libre
35
Desarrollador 35
Evaluación
(287)
Proyectos
293
70%
Arbitraje
2
100% / 0%
Caducado
0
Libre
Ha publicado: 1 ejemplo
36
Desarrollador 36
Evaluación
(450)
Proyectos
560
26%
Arbitraje
22
41% / 36%
Caducado
85
15%
Libre
Ha publicado: 6 ejemplos
37
Desarrollador 37
Evaluación
(156)
Proyectos
280
35%
Arbitraje
14
29% / 50%
Caducado
42
15%
Libre
38
Desarrollador 38
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
39
Desarrollador 39
Evaluación
(77)
Proyectos
232
73%
Arbitraje
6
100% / 0%
Caducado
1
0%
Libre
Solicitudes similares
⸻ I have an Expert Advisor called NeuroTrendX_Pro v7.9 ULTRA (NTX Pro). I need a reliable and experienced MQL5 developer to finalize and correct it without removing or disabling any existing logic. Scope of work (included in the fixed budget): • Fix all existing compile/runtime errors (not just one). • Keep the entire current logic intact (do not remove or change modules). • Implement and confirm the following
Hello, I’m looking for an MQL5 or MQL4 EA that trades EURUSD (optionally other majors or XAUUSD). The broker applies a 4-pip spread on EURUSD and higher on other symbols. The sole objective is to generate at least 45–60 lots of volume within 2 weeks or max one month (more is better; a bonus is paid for every additional 10 lots traded). The account has 1000 USD starting balance. Capital preservation is not required
# Multi-Layer Probabilistic EA — Design Plan (MQL5) Author: Custom-Expert-Advisors Status: Draft v3 Scope: MQL5-only (no Python) ## 1. Purpose & Scope Design a robust, real-time, probabilistic Expert Advisor for MT5 that adapts to market regimes, filters noise using information theory, and sizes risk via Bayesian beliefs and fractional Kelly. The design prioritizes stability, latency control, and survivability in
I need MQL4 EA for a forex expert advisor to trade on MT4 that uses a reversal strategy with the following conditions: only pairs that will enter are USDJPY, EURJPY, CADJPY, NZDJPY, AUDJPY, GBPJPY, CHFJPY. Each pair can only be traded once a month. Will only enter the market on 1 hour timeframe. Lot size = 1.0. Risk:reward ratio is 1:2. Enter if there are at least 7 confirmations from the following signals: for the
Bainanans 500+ USD
Bainanan good f المؤشر. ينبغي إضافة نقطة صفراء عند أعلى نقطة في الشموع في منطقة ذروة الشراء - وهي نقطة H. ينبغي إضافة نقطة خضراء عند النقطة المنخفضة للشموع في منطقة ذروة البيع - وهي نقطة L. إذا وُجدت نقطة L واحدة على الأقل بين نقطتي H، فابحث عن نقطة LL في الفترة الفاصلة بينهما. ستكون الشمعة ذات أدنى سعر قاع هي نقطة LL. بشكل عام، لا تُعتبر نقطة LL بالضرورة نقطة L. ابحث عن الشموع ذات أدنى سعر قاع. إذا كانت هناك نقطة H
Kamohelo Phehlane 50 - 150 USD
The robot must make me a large profits and it must be strategic.It must look for strategies and tell me whether to buy or sell the trade.And it must take a half of the profit and must give me the other half of the profit
Døsh forex 30 - 200 USD
I want a robot that will help me and trade the the robot will be very good I don’t want to loose money I repeat I don’t want to loose money
Precision Shift EA 100 - 500 USD
Use the Daily (D1) chart as the higher timeframe reference. On the H1 timeframe, monitor for a sweep of the previous day’s high or low. A sweep means that price takes liquidity above or below the previous day’s level and then shifts back inside. After a sweep on H1, drop to the M5 timeframe. On M5, wait for a Change of State in Delivery / Market Structure Shift (CHOCH/BOS) to confirm entry. If the sweep occurs above
📌 Forex EA Bot Requirement Document 1. General Information Trading Platform: MetaTrader 5 (MT5) / MetaTrader 4 (MT4) Trading Instruments: (e.g., GBP/JPY, XAU/USD, BTC/USD) Timeframes to Trade: (e.g., 15M, 1H, 4H, Daily) Trading Style: (Scalping, Swing trading, Intraday, Position trading) 2. Entry Rules Define the indicators/strategies for entry (e.g., Moving Averages, MACD, RSI, Order Blocks, Supply & Demand)
Develop a fully automated Expert Advisor (EA) compatible with MetaTrader 5 (MT5) platform. The EA should assist traders in successfully navigating and passing proprietary trading firm challenges (e.g., FTMO) by employing advanced risk management and hedging strategy. Core Functionalities 1. Dual-Account Hedging Mechanism Functionality: Implement a system where the EA places buy orders on the prop (challenge) account

Información sobre el proyecto

Presupuesto
75+ USD

Cliente

Encargos realizados1
Número de arbitrajes0