Техническое задание

Here is an example of Requirements Specification for the development of the MACD Sample Expert Advisor, which is available in the MetaTrader 5 standard package.

1. The idea of the trading system is as follows: market entries are performed when MACD's main and signal lines intersect in the current trend direction.

2. Trend is determined based on the Exponential Moving Average with the specified period (InpMATrendPeriod). If the current EMA value is greater than the previous one, the trend is seen as growing (ema_current > ema_previous). Alternatively, if current EMA is below the previous one, the trend is considered to be falling (ema_current< ema_previous).

3. Trading Signals:

  • Buy signal: the main MACD line crosses the signal line upwards (macd_current>signal_current && macd_previous<signal_previous).
  • Sell signal: the main MACD line crosses the signal line downwards (macd_current<signal_current && macd_previous>signal_previous). The below figure shows Buy and Sell cases.


4. Positions are closed at opposite signals: Buy positions are closed at Sell signals, and Sell positions are closed at Buy signals.

5. Positions are opened at the market price, when a new bar emerges. The Expert Advisor is to be tested using Open prices, so there is no need to add functions for disabling operations inside the bar.

6. Additional filters for opening a position:

The absolute value of MACD's main line will be used to filter out weak signals: the signal is only confirmed if this value is greater than open_level (in points). Signal confirmation conditions are as follows:

  • Confirmation of a buy signal: Abs(macd_current)>open_level
  • Confirmation of a sell signal: macd_current>open_level

7. Additional filters for closing a position:

The absolute value of MACD's main line will also be used to confirm position closure: the signal is confirmed if this value is greater than close_level (in points). Close signal confirmation conditions are as follows:

  • Confirmation to close Buy positions — macd_current>close_level
  • Confirmation to close Sell positions — Abs(macd_current)>close_level

8. Close by Take Profit — during position opening, a Take Profit level is set at a fixed distance from the open price, specified in points. The value is set in the InpTakeProfit input parameter.

9. Position management

TrailngStop is used to protect profit. Stop Loss is set if profit in points exceeds the value specified in the InpTrailingStop parameter. If the price continues to move in the profit direction, Stop Loss should be trailed at the given distance. Stop Loss cannot be moved towards the loss direction, i.e. the Stop Loss value cannot be increased. If none of protective orders (Take Profit or Stop Loss) triggers, the position should be closed by an opposite signal. No other position exit methods are available.

Откликнулись

1
Разработчик 1
Оценка
(325)
Проекты
411
22%
Арбитраж
44
61% / 23%
Просрочено
48
12%
Работает
2
Разработчик 2
Оценка
(257)
Проекты
341
58%
Арбитраж
7
14% / 71%
Просрочено
9
3%
Свободен
3
Разработчик 3
Оценка
(64)
Проекты
68
25%
Арбитраж
12
42% / 42%
Просрочено
4
6%
Свободен
4
Разработчик 4
Оценка
(42)
Проекты
62
8%
Арбитраж
12
58% / 42%
Просрочено
1
2%
Свободен
5
Разработчик 5
Оценка
(19)
Проекты
26
27%
Арбитраж
3
0% / 100%
Просрочено
2
8%
Свободен
6
Разработчик 6
Оценка
(197)
Проекты
320
35%
Арбитраж
64
13% / 56%
Просрочено
83
26%
Свободен
7
Разработчик 7
Оценка
(2115)
Проекты
2686
62%
Арбитраж
114
46% / 25%
Просрочено
419
16%
Загружен
8
Разработчик 8
Оценка
(16)
Проекты
20
0%
Арбитраж
9
0% / 78%
Просрочено
6
30%
Свободен
9
Разработчик 9
Оценка
(2452)
Проекты
3088
66%
Арбитраж
77
48% / 14%
Просрочено
340
11%
Работает
10
Разработчик 10
Оценка
(38)
Проекты
40
25%
Арбитраж
23
13% / 74%
Просрочено
8
20%
Работает
11
Разработчик 11
Оценка
(482)
Проекты
511
53%
Арбитраж
10
60% / 20%
Просрочено
3
1%
Свободен
12
Разработчик 12
Оценка
(8)
Проекты
11
0%
Арбитраж
11
18% / 73%
Просрочено
2
18%
Свободен
13
Разработчик 13
Оценка
(72)
Проекты
80
10%
Арбитраж
36
8% / 53%
Просрочено
6
8%
Работает
14
Разработчик 14
Оценка
(42)
Проекты
88
14%
Арбитраж
31
29% / 55%
Просрочено
36
41%
Работает
15
Разработчик 15
Оценка
(301)
Проекты
451
65%
Арбитраж
5
40% / 0%
Просрочено
4
1%
Работает
16
Разработчик 16
Оценка
(298)
Проекты
427
26%
Арбитраж
18
61% / 33%
Просрочено
26
6%
Свободен
17
Разработчик 17
Оценка
(130)
Проекты
165
43%
Арбитраж
20
60% / 20%
Просрочено
9
5%
Загружен
18
Разработчик 18
Оценка
(568)
Проекты
641
41%
Арбитраж
22
55% / 32%
Просрочено
47
7%
Работает
19
Разработчик 19
Оценка
(564)
Проекты
933
47%
Арбитраж
303
59% / 25%
Просрочено
125
13%
Загружен
20
Разработчик 20
Оценка
(67)
Проекты
144
34%
Арбитраж
10
10% / 60%
Просрочено
26
18%
Свободен
Похожие заказы
the code wasn't mine, i have got it somewhere on the web, but i like the performance of the EA, so i want to use it on mt5 platform. the given code based on price movements with ladder entry concept
* Advanced level dev only, NDA required * Hi, I have a multi timeframe, multiindicator expert that requires additional features added to it. First started development 5 years ago. Upgrading with new features. To be added Entry - Add Stochastic and CCI options for trade entry to be added to existing signal options. Add config options to existing menu Bulk Exit - Master switch for close all trades based on basket
I want to make AI based on Attached Picture Swing High low. If you have experience can share demo first. Stop loss, take profit, trailing , break even ,DD etc. also amiable
Hello, I’m looking for a TradingView indicator that fits my forex trading needs. If you can create or customize one for me, please reach out. I'd appreciate your help! Thanks in advance."
Hey greetings am in need of a developer that can convert my simple tradingview indicator to MT4 I have the source code of the indicator and is also a public indicator on Tradingview site Kindly bid and let started
can you help me with Ctrader i need modification on the linkhttps://docs.google.com/document/d/1fggk49xWbnwahtfOlE-U7G6muZB1FT8eWmftGiY7R-s/edit?usp=sharing can you assist with cTrader modifications to enhance functionality and improve performance. do text me if you a professional on it i will be looking forward to your response best regards
Hello great developer, im looking for a great developer on this project I have a project ready to automate operations from telegram to mt4/mt5 by taking signals from an email. Can you help me? peace be unto you
I need an expert to help me convert chopzone traingview pinescript to mt4, I need an expert to get it done for me on between 1 to 2 days i hope this will be done by then, i will attach the file and my budget is $30 as of minimum here
am looking for great developer that can help me on this project, I have an Indicator on Tradingview and want to convert that to an EA for Metatrader 4. Can you help me? peace be unto you
Hello experts I need you assistance to develop and Volume data indicator which will show the buy sell volume of a Candle . demo before selection would be recommended if anyone have built anything similar already . I want to use combination of Fibo bar + Swing HL bar to identify Volume zone . Example

Информация о проекте

Бюджет
30 - 200 USD
Исполнителю
27 - 180 USD
Сроки выполнения
до 20 дн.