指定

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
等级
(600)
项目
935
46%
仲裁
31
39% / 29%
逾期
93
10%
工作中
2
开发者 2
等级
(360)
项目
572
33%
仲裁
27
70% / 7%
逾期
16
3%
空闲
3
开发者 3
等级
(120)
项目
159
49%
仲裁
15
53% / 27%
逾期
4
3%
空闲
4
开发者 4
等级
(184)
项目
260
22%
仲裁
17
65% / 18%
逾期
1
0%
已载入
5
开发者 5
等级
(236)
项目
440
26%
仲裁
125
21% / 57%
逾期
96
22%
工作中
6
开发者 6
等级
(79)
项目
111
37%
仲裁
0
逾期
4
4%
空闲
7
开发者 7
等级
(42)
项目
88
14%
仲裁
31
29% / 55%
逾期
36
41%
工作中
8
开发者 8
等级
(1135)
项目
1438
62%
仲裁
21
57% / 10%
逾期
43
3%
空闲
9
开发者 9
等级
(560)
项目
1348
59%
仲裁
28
82% / 0%
逾期
10
1%
空闲
10
开发者 10
等级
(17)
项目
39
69%
仲裁
0
逾期
8
21%
空闲
11
开发者 11
等级
(100)
项目
124
40%
仲裁
9
89% / 0%
逾期
0
工作中
12
开发者 12
等级
(251)
项目
400
54%
仲裁
9
67% / 22%
逾期
36
9%
空闲
13
开发者 13
等级
(571)
项目
785
47%
仲裁
23
39% / 13%
逾期
63
8%
工作中
14
开发者 14
等级
(5)
项目
4
50%
仲裁
4
0% / 75%
逾期
0
空闲
15
开发者 15
等级
(255)
项目
457
35%
仲裁
57
37% / 37%
逾期
166
36%
已载入
16
开发者 16
等级
(497)
项目
568
33%
仲裁
27
44% / 44%
逾期
9
2%
已载入
17
开发者 17
等级
(564)
项目
933
47%
仲裁
303
59% / 25%
逾期
125
13%
工作中
18
开发者 18
等级
(38)
项目
40
25%
仲裁
23
13% / 74%
逾期
8
20%
工作中
19
开发者 19
等级
(72)
项目
80
10%
仲裁
36
8% / 53%
逾期
6
8%
工作中
20
开发者 20
等级
(66)
项目
200
72%
仲裁
4
100% / 0%
逾期
1
1%
空闲
21
开发者 21
等级
(200)
项目
202
75%
仲裁
2
100% / 0%
逾期
0
空闲
22
开发者 22
等级
(2122)
项目
2693
62%
仲裁
116
45% / 25%
逾期
419
16%
繁忙
23
开发者 23
等级
(64)
项目
107
68%
仲裁
1
100% / 0%
逾期
2
2%
空闲
24
开发者 24
等级
(60)
项目
67
6%
仲裁
28
18% / 39%
逾期
5
7%
已载入
25
开发者 25
等级
(39)
项目
40
10%
仲裁
0
逾期
0
空闲
26
开发者 26
等级
(2463)
项目
3101
66%
仲裁
77
48% / 14%
逾期
340
11%
空闲
27
开发者 27
等级
项目
0
0%
仲裁
0
逾期
0
空闲
28
开发者 28
等级
项目
0
0%
仲裁
1
0% / 0%
逾期
0
工作中
29
开发者 29
等级
(5)
项目
8
25%
仲裁
2
50% / 0%
逾期
2
25%
工作中
相似订单
I am looking to create program that can give me the list of stocks filtered matching below criteria and buy/sell advice reports 4 indicator based triggers MFI 20/80 buy sell sign MACD x4 (signal/MACD crossing instances )Buy/Sell Volume check above/below prev week avg 3/6/12 months Secondary indicator/warning only along with buy or sell sign - Not decider for buy/sell Volume adjusted exponential moving average
Hello Here Everyone, I need an expert to help me create a tradingview indicator that works exactly according to my requirements, Even though i will attach a file there review it and let me know if you could do it and we can talk about the price as well
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! Best regards ridynaty
Hello I would like to build a market screener of the assets according to my inputs. That mean the indicator gets activated in a chart but overwatches all assets which were added in the inputs. The screener should tell me if an asset is in a trend or mean reverting or consolidation market according to the timeframe in the inputs. I have no idea which indicators we need to use and I‘m curious which suggestions you
Create a Backtesting stimulator similar to ------ https://www.mql5.com/en/market/product/101346?source=External but showing BALANCE AND EQUITY on screen including open trades.. Must have experience with Backtesting softwares or can offer a solution to what am looking to fix.. IF you can develop I can go a bit above my budget
Hey greetings My please to met you Am in need of a tradingview developer that can create alert for me based on a tradingview indicator kindly bid for this project if it is what you can do for me
Develop a multi-strategies EA that makes entries based on selectable indicator-based criteria. Each can be toggled on/off, and trades can also be placed using a selectable combination of signals. Each trade position shall be entered on the bar and managed as a modified martingale. Position management will include partial close, variable grid increase as grid number increases, News stops, and a Dashboard for manual
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
Necesito un desarrollador con experiencia para crear un robot para cfds para mt5 con entorno windows, el cual abra y cierre posiciones condicionalmente al movimiento del precio e indicador, se incluye crear un indicador personalizado
Seb’s EA 2024/25 200 - 500 USD
Primary Agreement Description Details: This EA Strategy is to run on MT4. It has parameters for 2 MA's and 3 momentum indicators along with 22 "variable / constant rules & settings" on 1 time-frame (5 Min). There are 3 versions required to cater for 3 different Instruments (3 US Indexes). The only differences will be the position sizes, Stop levels & Macd bands. There are 3 entry conditions with 3 exit conditions

项目信息

预算
100+ USD
开发人员
90 USD