Developer to build a simple EA

MQL5 Эксперты

Работа завершена

Время выполнения 40 минут
Отзыв от заказчика
Exellent, talented, fast Developer. The job has been done in no time. A very positive experience. I really recommend this person ! Thank you!

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

I need a very simple EA which will use one indicator from mql5.com.

It should open a trade when an arrow appears.

SL, time filter.


I am searching for a longer term co-operation as I want to add (as extra jobs) features in the future, the developer must know how to add panels etc... 


I am waiting for experienced developer who works fast.




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

1
Разработчик 1
Оценка
(21)
Проекты
20
10%
Арбитраж
2
50% / 50%
Просрочено
0
Свободен
2
Разработчик 2
Оценка
(63)
Проекты
92
15%
Арбитраж
5
20% / 20%
Просрочено
7
8%
Загружен
3
Разработчик 3
Оценка
(187)
Проекты
266
22%
Арбитраж
17
65% / 18%
Просрочено
1
0%
Работает
4
Разработчик 4
Оценка
(166)
Проекты
196
27%
Арбитраж
8
25% / 50%
Просрочено
5
3%
Работает
5
Разработчик 5
Оценка
(240)
Проекты
377
17%
Арбитраж
24
38% / 29%
Просрочено
19
5%
Загружен
6
Разработчик 6
Оценка
(31)
Проекты
43
19%
Арбитраж
7
29% / 43%
Просрочено
5
12%
Свободен
7
Разработчик 7
Оценка
(11)
Проекты
23
4%
Арбитраж
1
0% / 0%
Просрочено
7
30%
Свободен
8
Разработчик 8
Оценка
(203)
Проекты
205
75%
Арбитраж
2
100% / 0%
Просрочено
0
Свободен
9
Разработчик 9
Оценка
(12)
Проекты
16
19%
Арбитраж
2
50% / 50%
Просрочено
0
Свободен
10
Разработчик 10
Оценка
(10)
Проекты
16
6%
Арбитраж
0
Просрочено
2
13%
Загружен
11
Разработчик 11
Оценка
(101)
Проекты
125
40%
Арбитраж
9
89% / 0%
Просрочено
0
Работает
12
Разработчик 12
Оценка
(66)
Проекты
201
72%
Арбитраж
4
100% / 0%
Просрочено
1
0%
Работает
13
Разработчик 13
Оценка
(2467)
Проекты
3106
66%
Арбитраж
77
48% / 14%
Просрочено
340
11%
Работает
14
Разработчик 14
Оценка
(260)
Проекты
462
35%
Арбитраж
57
37% / 37%
Просрочено
168
36%
Работает
15
Разработчик 15
Оценка
(40)
Проекты
41
61%
Арбитраж
0
Просрочено
0
Свободен
16
Разработчик 16
Оценка
(34)
Проекты
47
55%
Арбитраж
5
80% / 0%
Просрочено
3
6%
Загружен
17
Разработчик 17
Оценка
(37)
Проекты
45
38%
Арбитраж
0
Просрочено
3
7%
Свободен
18
Разработчик 18
Оценка
(3)
Проекты
7
100%
Арбитраж
0
Просрочено
0
Свободен
19
Разработчик 19
Оценка
(1)
Проекты
0
0%
Арбитраж
0
Просрочено
0
Свободен
20
Разработчик 20
Оценка
(60)
Проекты
79
25%
Арбитраж
9
33% / 56%
Просрочено
9
11%
Свободен
21
Разработчик 21
Оценка
(268)
Проекты
544
50%
Арбитраж
55
40% / 36%
Просрочено
226
42%
Работает
Похожие заказы
Need help to improve existing indicator to become EA. This indicator will open position when all conditions of a good entry are met. It can help with opening and closing of entries at the most safest and profitable times
Bot casino 30+ USD
Cómo si nombre lo indica, necesito crear un EA tipo casino. Operativa: 1. Abrir dos operaciones al mismo tiempo, una de compra y una de venta 2. Usar MG 3. Abrir maximo 20 operaciones 4. El EA trabajar para cuentas centavo 5. Abrir una nueva operación MG cada 10 pips 6. Cerrar operación con una utilidad de 15 pips 7. MQL4 8.que funcione igual para cualquier par La estrategia es muy sencilla, como se indica en su
double baseLotSize = 0.1; double currentLotSize = baseLotSize; void OnTrade() { if (LastTradeWasWin()) // Custom function checking last trade outcome { currentLotSize *= 1.5; // Increase lot size by 50% on a win } else { currentLotSize = baseLotSize; // Reset to base lot size on a loss } OpenTrade(currentLotSize); }
Test.......... 30+ USD
} return INIT_SUCCEEDED; // Sample Moving Average Crossover EA with Risk Management in MQL5 // Define input parameters input int FastMAPeriod = 10; // Fast moving average period input int SlowMAPeriod = 20; // Slow moving average period input double RiskPerTrade = 1.0; // Risk per trade as a percentage of balance input double LotSize = 0.1; // Fixed lot size input int MagicNumber = 123456; //
heres the code (#include <Trade\Trade.mqh> // Include the CTrade class CTrade trade; // Declare an instance of CTrade // Symbols to trade string SYMBOLS[] = {"XAUUSDm", "US30m", "GBPUSDm", "USTECm", "EURUSDm"}; // Parameters for 15-minute scalping and integrated strategy double MIN_LOT_SIZE = 0.01; // Minimum lot size for most brokers double TRAILING_STOP_LOSS = 5; // Trailing stop loss (points) double
Test_shangrila 30+ USD
// Sample Moving Average Crossover EA with Risk Management in MQL5 // Define input parameters input int FastMAPeriod = 10; // Fast moving average period input int SlowMAPeriod = 20; // Slow moving average period input double RiskPerTrade = 1.0; // Risk per trade as a percentage of balance input double LotSize = 0.1; // Fixed lot size input int MagicNumber = 123456; // Unique magic number for this EA // Indicator
Experienced developer to write an EA applying 2 indicators and 3 conditions in a timely manner. Knowledge of the use of Stop Loss and Trailing stops is critical for this order
edit/ add simple features with buffers to existing zz indicators learners should not apply this job anyone looking for strategy should also not apply this job. if you are good, next job would be for an EA
2. Scope of Work 2.1 Debugging: - Code Review:Comprehensive review of existing EA code to identify and resolve bugs, inefficiencies, and any potential issues. - Testing:** Conduct thorough testing on historical data to evaluate the performance and reliability of the AI HFT Bot. - Performance Optimization:** Fine-tune algorithms for improved execution speed and accuracy. 2.2 Installation: - System Setup: Configure the
Hi, Are you familiar with the retail trade sentiment software FXSSI FXSSI - https://fxssi.com/ Are you able to feed the sentiment data into the EA to make trading decisions? Please advise. Thanks

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

Бюджет
30 - 60 USD
VAT (22%): 6.6 - 13.2 USD
Итого: 36.6 - 73.2 USD
Исполнителю
27 - 54 USD
Сроки выполнения
до 3 дн.