Sarowar Jahan

Termos de Referência

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.

Respondido

1
Desenvolvedor 1
Classificação
(325)
Projetos
411
22%
Arbitragem
44
61% / 23%
Expirado
48
12%
Trabalhando
2
Desenvolvedor 2
Classificação
(257)
Projetos
341
58%
Arbitragem
7
14% / 71%
Expirado
9
3%
Livre
3
Desenvolvedor 3
Classificação
(64)
Projetos
68
25%
Arbitragem
12
42% / 42%
Expirado
4
6%
Livre
4
Desenvolvedor 4
Classificação
(42)
Projetos
62
8%
Arbitragem
12
58% / 42%
Expirado
1
2%
Livre
5
Desenvolvedor 5
Classificação
(19)
Projetos
26
27%
Arbitragem
3
0% / 100%
Expirado
2
8%
Livre
6
Desenvolvedor 6
Classificação
(197)
Projetos
320
35%
Arbitragem
64
13% / 56%
Expirado
83
26%
Livre
7
Desenvolvedor 7
Classificação
(2115)
Projetos
2686
62%
Arbitragem
114
46% / 25%
Expirado
419
16%
Carregado
8
Desenvolvedor 8
Classificação
(16)
Projetos
20
0%
Arbitragem
9
0% / 78%
Expirado
6
30%
Livre
9
Desenvolvedor 9
Classificação
(2452)
Projetos
3088
66%
Arbitragem
77
48% / 14%
Expirado
340
11%
Trabalhando
10
Desenvolvedor 10
Classificação
(38)
Projetos
40
25%
Arbitragem
23
13% / 74%
Expirado
8
20%
Trabalhando
11
Desenvolvedor 11
Classificação
(482)
Projetos
511
53%
Arbitragem
10
60% / 20%
Expirado
3
1%
Livre
12
Desenvolvedor 12
Classificação
(8)
Projetos
11
0%
Arbitragem
11
18% / 73%
Expirado
2
18%
Livre
13
Desenvolvedor 13
Classificação
(72)
Projetos
80
10%
Arbitragem
36
8% / 53%
Expirado
6
8%
Trabalhando
14
Desenvolvedor 14
Classificação
(42)
Projetos
88
14%
Arbitragem
31
29% / 55%
Expirado
36
41%
Trabalhando
15
Desenvolvedor 15
Classificação
(301)
Projetos
451
65%
Arbitragem
5
40% / 0%
Expirado
4
1%
Trabalhando
16
Desenvolvedor 16
Classificação
(298)
Projetos
427
26%
Arbitragem
18
61% / 33%
Expirado
26
6%
Livre
17
Desenvolvedor 17
Classificação
(130)
Projetos
165
43%
Arbitragem
20
60% / 20%
Expirado
9
5%
Carregado
18
Desenvolvedor 18
Classificação
(568)
Projetos
641
41%
Arbitragem
22
55% / 32%
Expirado
47
7%
Trabalhando
19
Desenvolvedor 19
Classificação
(564)
Projetos
933
47%
Arbitragem
303
59% / 25%
Expirado
125
13%
Carregado
20
Desenvolvedor 20
Classificação
(67)
Projetos
144
34%
Arbitragem
10
10% / 60%
Expirado
26
18%
Livre
Pedidos semelhantes
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

Informações sobre o projeto

Orçamento
30 - 200 USD
Desenvolvedor
27 - 180 USD
Prazo
para 20 dias