Sell at resistance Zone and but from Support Zone

Trabajo finalizado

Plazo de ejecución 3 días
Comentario del Ejecutor
Pleasant working with him. Recommended.

Tarea técnica

Hi, I need an EA in MQL4 language with the source code, it should be well commented and clean code.

The strategy is based on Resistance and Support zones. The user can input four prices, two to create a resistance zone and two to create a support zone. Crossing or touching those zones will give the signals to open/close sell/buy orders as follow.

There are four types of signals

A-      Buy signals:

a.       if the price touch the support zone: we initiate buy order with the initial lot initial stop loss and the initial target.

b.       Complete close 1:  if a new bar open and close above a resistance level this create a buy signal.

c.       Complete close 2: if a new bar opened below the resistance zone and closed above the resistance zone this create a buy signal.

d.       Partially closed: if a new bar open in the resistance zone and the closes above the resistance zone that gives the buy signal.

B-      Sell signals:

a.       if a price touches the resistance zone this is a sell signal.

b.       Complete close one if a new bar often and they closed below the support zone this give a cell signal

c.       Completely close to if a new bar opened above the support zone and the closes below the support zone this give a sell signal

d.       Basically closed if a new bar opened in the support zone and they closed below the support zone this will give a Celsius

the user can decide which signals to be used, using the drop-down menu in the user input.

the user may use one or more of the signals and he may use all the signals together.

We need a counter to limit how many times to take the first signal, the counter should be a user input. i.e. if we initiate a sell from resistance and achieved the TP for two times and the counter_Limit set to “2” then we don’t initiate a new sell order on the third time the prices touches the resistance zone.

A Time_frame user input to determine weather a support or a resistance zone became the opposite: when a zone got a Complete “Close signal” i.e. a resistance zone broken with a new bar from the user input TF. This resistance zone became and act as a Support zone. And vice versa

 

This is the EA specifications

  • 1.       time filter to specify when in hours and minutes to start the EA and when to finish During the day, with a bool user input to activate or disable.
  • 2.       Training stop option, (when to start and pip Step) , with a bool user input to activate or disable.
  • 3.       Break even option. (when to activate and how many pips in profit) , with a bool user input to activate or disable.
  • 4.       Stop loss three options: either normal points or opposite signal or use both.
  • 5.       Take profits in normal points.
  • 6.       Martingale the next slot if the last order was in loss. A bool to activate in the user input with multiplier to choose (last lot * [1.7] ) the 1.7 is a user input.
  • 7.       Only one order at a time. So if we have an order in the market we don't open a new order on the same symbol.
  • 8.       any run time error should be catched and print.

 

General conditions:

1-      MT4 EA with the source code, well commented and organized

2-      Do the full job in 3 Days.

Thanks

 


Han respondido

1
Desarrollador 1
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
2
Desarrollador 2
Evaluación
(10)
Proyectos
4
0%
Arbitraje
11
0% / 82%
Caducado
0
Libre
3
Desarrollador 3
Evaluación
(1)
Proyectos
0
0%
Arbitraje
2
0% / 100%
Caducado
0
Libre
4
Desarrollador 4
Evaluación
(5)
Proyectos
1
100%
Arbitraje
4
0% / 75%
Caducado
0
Trabaja
5
Desarrollador 5
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
6
Desarrollador 6
Evaluación
(365)
Proyectos
507
40%
Arbitraje
159
17% / 74%
Caducado
99
20%
Trabajando
7
Desarrollador 7
Evaluación
(75)
Proyectos
80
6%
Arbitraje
46
11% / 54%
Caducado
7
9%
Trabaja
8
Desarrollador 8
Evaluación
(209)
Proyectos
272
21%
Arbitraje
24
54% / 17%
Caducado
0
Libre
9
Desarrollador 9
Evaluación
(472)
Proyectos
491
75%
Arbitraje
6
67% / 17%
Caducado
0
Libre
10
Desarrollador 10
Evaluación
(78)
Proyectos
246
74%
Arbitraje
7
100% / 0%
Caducado
1
0%
Libre
Ha publicado: 1 artículo
Solicitudes similares
please share: Strategy description — entry/exit rules, indicators used, timeframe(s), and instrument(s) (a written explanation, screenshots, or an existing indicator/EA to reference all work) Risk management rules — position sizing method (fixed lot / % risk), stop loss / take profit logic, max drawdown or daily loss limits, and whether martingale/grid/hedging is involved Broker & account details — broker name
I need an experienced MQL5 developer to create a fully automated MT5 Expert Advisor called Ayoub Gold EA , focused exclusively on XAUUSD (Gold) . Main requirements: Platform: MT5 / MQL5. Fully automated BUY and SELL trading on XAUUSD. Must support broker suffixes such as XAUUSD, XAUUSD.f and XAUUSDm. Trading strategy based mainly on Range Breakout with trend confirmation. EMA, ADX and ATR filters. London/New York
Mashiri 50 - 10000 USD
I need a custom MetaTrader 5 indicator designed specifically for XAUUSD gold trading. The indicator should identify potential buy and sell opportunities, display clear entry and exit signals on the chart, provide alerts, and help identify market trends and possible reversals
Looking for an experienced Sierra Chart ACSIL/C++ developer to customize an existing footprint chart. I need 3 things: 7-Day ATR – calculate and display a configurable 7-day ATR. Custom Footprint – modify my existing footprint chart to match my preferred layout/data display. Automatic LVN – detect and plot Low Volume Nodes automatically based on volume distribution. I already have a working footprint chart, so no
Торговый робот XAUUSD AI/ML — MT5 + Python + MQL5 Ищу опытного разработчика с глубокими знаниями в следующих областях: MQL5 / MetaTrader 5 Python Машинное обучение / Искусственный интеллект Алгоритмическая торговля Проект Я хочу разработать торговую систему на основе ИИ/машинного обучения, предназначенную исключительно для XAUUSD (золото) . Архитектура: Данные рынка XAUUSD → Модель Python/ML → ПОКУПКА / ПРОДАЖА /
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {
1. Title Development of a Custom MQL5 Expert Advisor for XAUUSD (MetaTrader 5) 2. Requirements Specification Overview: I am looking for an experienced MQL5 developer to build a robust, fully custom Expert Advisor (EA) for MetaTrader 5 tailored for trading Gold (XAUUSD). Core Specifications & Features: Asset & Timeframe: Designed specifically for XAUUSD. Timeframe should be selectable directly from the EA inputs
I am looking for a Senior MQL5 Developer to create a new MetaTrader 5 Expert Advisor from scratch. I will provide a complete Requirements Specification containing objective entry, exit and risk-management rules. This is not a request to copy or decompile an existing product. Project requirements: Clean and modular MQL5 source code. Exact implementation of the supplied strategy. One signal evaluation per configured
Composite robot 30 - 200 USD
Title: Multi-Timeframe Pure Price Action & Elliott Wave Execution Bot for XAUUSD 1. Project Overview I need a robust, automated trading bot (Expert Advisor) for MetaTrader 5 (MT5) to trade XAUUSD (Gold) exclusively. The strategy is built entirely on Top-Down Multi-Timeframe (MTF) market structure, pure price action, and Elliott Wave principles. It does not use traditional lagging technical indicators (like RSI or
Build a fully mechanical EA for XAUUSD on D1 timeframe. Trader spends 5-10 mins per day to run it. No discretion. EA calculates, places orders, and walks away. Timeframe Use the Daily (D1) timeframe . At the close of each completed daily candle, identify: Previous day's High (wick) Previous day's Low (wick) Previous day's Open

Información sobre el proyecto

Presupuesto
30 - 50 USD