Educational MACD-GRID Hybrid Strategy

工作已完成

执行时间13 天
客户反馈
A strong focus on simplicity, clarity, and eager to get the job done right.

指定

I would like to create an EA with a (hopefully!) simple premise, to help me to learn the MT4 language more rapidly and effectively than on my own. It will have several variables so that I can make changes to the strategy and performance of the EA and observe the changes in behaviour via back testing.

The proposed core strategy is a hybrid between the basic MACD buy/sell signals and a grid system. In essence a position is opened according to the MACD, and if additional open signals are received before the close signal, then a grid is created according to user defined variables. While the concept of a grid on the MACD may be fairly straightforward, I would also like to be able to enable / disable different states to create different dimensions of functionality. The different states are:
  1. Increasing / decreasing the starting grid lot size, based on whether the H1 MACD signal line is going with or against the position that is being opened.
  2. To switch between linear (steps) and geometric (multiples) progression in grid position sizes.
  3. To switch between using trailing stops on positions, and not.
As the required functionality is merely a combination of existing basic MT4 functions and switches, I do not expect that the completion of this educational EA will infringe on any personal or confidential coding structures used by developers.

The final deliverable will be the source code for the EA that I can open and manipulate in the MetaEditor to further my learning objectives. There will be no limitations imposed on my freedom to do what I want with this source code after delivery (do not include proprietary elements that cannot be shared). Requirements of this final code:
  1. The EA will be made for MT4.
  2. The source code will compile without errors.
  3. The resulting EA will run as expected without errors.

Additional contract details:

  • I am open to any suggestions that the developer may make based on their experience, to improve the proposed EA.
  • The budget proposal is open to negotiation.
  • The proposed timeline is open to negotiation.
  • I expect work on this EA to start sometime the week of April 12th.
  • I have attached a zipped pdf file, which contains the full EA strategy description and SOW.

Looking forward to hearing back from you!

附加的文件:

反馈

1
开发者 1
等级
(136)
项目
196
43%
仲裁
17
29% / 59%
逾期
27
14%
空闲
2
开发者 2
等级
(3)
项目
3
33%
仲裁
1
0% / 100%
逾期
0
空闲
3
开发者 3
等级
(390)
项目
416
30%
仲裁
74
19% / 72%
逾期
52
13%
工作中
4
开发者 4
等级
(137)
项目
167
35%
仲裁
11
91% / 0%
逾期
0
空闲
5
开发者 5
等级
(214)
项目
316
34%
仲裁
63
37% / 40%
逾期
102
32%
工作中
6
开发者 6
等级
(514)
项目
553
53%
仲裁
13
69% / 15%
逾期
3
1%
空闲
7
开发者 7
等级
(36)
项目
50
28%
仲裁
2
0% / 100%
逾期
6
12%
空闲
8
开发者 8
等级
(27)
项目
43
7%
仲裁
18
6% / 78%
逾期
26
60%
空闲
9
开发者 9
等级
(64)
项目
144
46%
仲裁
20
40% / 20%
逾期
32
22%
工作中
10
开发者 10
等级
(45)
项目
91
13%
仲裁
34
26% / 59%
逾期
37
41%
空闲
相似订单
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
I need an MT5 Expert Advisor for XAUUSD (Gold) running on an Exness account. STRATEGY LOGIC The exact entry and exit rules will be provided in writing before development starts. Please quote for a single rule-based strategy with clearly separated logic, so the rules can be adjusted later without rewriting the whole EA. RISK MANAGEMENT (this is the priority of the project) - Risk per trade as a percentage of account
Modification of Trade_Panel_7 7.05 Objective . I have this utility “Trade_Panel_7 7.05” with which I open and close positions. Please refer to attached “Trade Panel Modification.jpg”. It shows an input parameter “Volume Step”. This parameter has the initial value of 0.02 as shown. This feature needs to be amended. Present Status . Value of lot size is increased by this “Volume Step”. I have built a whole series of
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly
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 a unique grid trading system for XAUUSD that combines entry, controlled two-sided grid expansion, DCA (Dollar Cost Averaging) basket profit control, hedging. Unlike traditional grid EAs that only trade against price, this unique grid system should dynamically build positions in both directions based on market movement, allowing flexible adaptation to changing conditions ie the grid needs to dynamically move
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
//———————————————————————————————————————————————————————————————————— 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 () {

项目信息

预算
30 - 200 USD
截止日期
 10 天