Candle High Low Box Expert Adviser

MQL5 Experts Forex

Spécifications

enum ENUM_VOLUME
{
   VOLUME_FIXED,
   VOLUME_PERCENT,
   VOLUME_MONEY,
};

enum ENUM_CALC_MODE
{
   CALC_MODE_OFF,
   CALC_MODE_FACTOR,
   CALC_MODE_PERCENT,
   CALC_MODE_POINTS,
};

enum ENUM_TSL_MODE
{
   TSL_MODE_OFF,
   TSL_MODE_PERCENT,
   TSL_MODE_POINTS,
};
//+------------------------------------------------------------------------------------------------------------------+
//|                                                                                                                  |
//+------------------------------------------------------------------------------------------------------------------+
input group "+--- General Settings ---+";
input double BoxCountBarsNumber = 20;                                        // Box Count Bars Number
input ENUM_TIMEFRAMES timeframeBoxCalculation = PERIOD_M5;          // Timeframe Box Calculation
input double CountBarsNumberForNexSignal = 4;                       // Count Bars Number for Next Signal

input ENUM_VOLUME tradingVolume = ENUM_VOLUME::VOLUME_FIXED;        // Trading Volume
input double fixedLots = 0.01;                                        // Fixed Lots
input double riskPercentageOfBalance = 0.5;                           // Risk Percentage of Balance
input double riskMoney = 50;                                          // Risk Money
input double orderBufferPoints = 0;                                   // Order Buffer Points (0 = No Buffer)
input ENUM_CALC_MODE targetCalcMode = ENUM_CALC_MODE::CALC_MODE_PERCENT;  // Target Calc Mode
input double targetValue = 0.20;                                         // Target Value
input ENUM_CALC_MODE stopCalcMode = ENUM_CALC_MODE::CALC_MODE_PERCENT; // Stop Calc Mode
input double stopValue = 0.10;                                           // Stop Value

input group "+--- Time Settings ---+";
input bool TimeFilter = true ; // Time filter on/off
input int Inp_StartHour = 1;       // Start Trading Hour
input int Inp_StartMinute = 5;     // Start Trading Minute
input int Inp_EndHour = 23;         // Trading End Hour
input int Inp_EndMinute = 30;      // Trading End Minute

input group "+--- Trailing Stop Settings ---+";
input ENUM_TSL_MODE tslCalcMode = ENUM_TSL_MODE::TSL_MODE_POINTS;    // TSL Calc Mode
input double tslTriggerValue = 1500;                                 // TSL Trigger Value
input double tslValue = 1500;                                      // TSL Value
input double tslStepValue = 1000;                                   // TSL Step Value

input group "+--- Trading Frequency Settings ---+";
input int maxLongTrades = 1;  // Max Long Trades in a day
input int maxShortTrades = 1; // Max Short Trades in a day
input int maxTotalTrades = 2; // Max Total Trades in a day

input group "+--- Trading Profit in the day ---+";
input bool ProfitFilter = true ; // If profit stop trading on/off
input double ProfitMoneylValue = 200;  // Stop trading if Profit in $
input bool LossFilter = true ; // If Loss stop trading on/off
input double LossMoneylValue = 100;  // Stop trading if Loss in $

input group "+--- Box Filter Settings ---+";
input int minBoxPoints = 0;       // Min Range Points
input double minBoxPercent = 0;   // Min Range Percent
input int maxBoxPoints = 10000;   // Max Range Points
input double maxBoxPercent = 100; // Max Range Percent

input group "+--- More Settings ---+";
input bool showBox = true ; // Show Box
input color BoxColor = clrGold; // Box Color
input string orderComment = "Exper Adviser";   // Order Comment
input int EA_Magic = 111;         // Magic Number

input bool chartComment = true;   // Chart Comment




Répondu

1
Développeur 1
Évaluation
(89)
Projets
254
78%
Arbitrage
9
22% / 56%
En retard
36
14%
Travail
Publié : 3 articles, 26 codes
2
Développeur 2
Évaluation
(611)
Projets
711
33%
Arbitrage
45
49% / 42%
En retard
14
2%
Travail
3
Développeur 3
Évaluation
(5)
Projets
10
20%
Arbitrage
1
0% / 100%
En retard
1
10%
Travail
4
Développeur 4
Évaluation
(298)
Projets
478
40%
Arbitrage
105
40% / 24%
En retard
82
17%
Chargé
Publié : 2 codes
5
Développeur 5
Évaluation
(645)
Projets
872
48%
Arbitrage
29
38% / 17%
En retard
63
7%
Gratuit
6
Développeur 6
Évaluation
Projets
1
0%
Arbitrage
0
En retard
1
100%
Gratuit
7
Développeur 7
Évaluation
(112)
Projets
132
56%
Arbitrage
1
0% / 0%
En retard
0
Travail
8
Développeur 8
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
9
Développeur 9
Évaluation
(73)
Projets
257
53%
Arbitrage
16
50% / 38%
En retard
83
32%
Gratuit
10
Développeur 10
Évaluation
(2)
Projets
2
0%
Arbitrage
0
En retard
0
Gratuit
Publié : 1 code
11
Développeur 11
Évaluation
(14)
Projets
18
22%
Arbitrage
1
100% / 0%
En retard
4
22%
Travail
12
Développeur 12
Évaluation
(19)
Projets
21
19%
Arbitrage
1
0% / 100%
En retard
2
10%
Travail
13
Développeur 13
Évaluation
(13)
Projets
24
75%
Arbitrage
0
En retard
2
8%
Gratuit
Publié : 62 codes
14
Développeur 14
Évaluation
(3)
Projets
1
0%
Arbitrage
5
0% / 100%
En retard
0
Gratuit
Commandes similaires
Куплю стабильный, высокоприбыльный торговый советник для платформ MetaTrader 4 и MetaTrader 5. Для любых доступных активах : Валютные пары (Forex) Металлы (XAUUSD, XAGUSD и др.) Энергоносители (нефть, газ) Индексы Криптовалюты Деривативы и другие CFD-инструменты 2. Ключевые требования к стратегии Запрещено: Martingale Grid / сетка / усреднение Риск-менеджмент (строго обязательно): Максимальная просадка Риск на одну
# Technical Specification for Expert Advisor Development (MT5) **Project Name:** Grid Breakout EA **Platform:** MetaTrader 5 (MT5) **Account Mode in MT5:** Hedging (separate position accounting) ## 1. EA Operation Algorithm ### Step 1: Initialization and First Entry 1. If there are no open positions, the EA detects the current market Ask and Bid prices. 2. Two pending orders are placed in both directions from the
Нужно доработать существующий робот. Робот торгует по стратегии сетка, нужно добавить тралл, т.е. чтобы последний ордер сетки закрывался по траллу, при этом первый ордер сетки должен закрыться в убыток за счет одного или нескольких прибыльных ордеров
Нужно разработать индикатор по тиковым паттернам. Паттерны будут обсуждаться отдельно. Ни чего сложно го в паттернах нет, лишь бы в MQL5 можно было работать с массивами тиков. Пример паттернов, количество тиков за время X по Биду больше количества N. Или паранормальная свеча (больше количество заданных пунктов) по Биду при отсуствии паранормальной по аску
Переписать код на MT5. В общем то и всё. Просто что бы работал в терминале MT5. Ну, не знаю, что ещё написать. Переписать на МТ5. Что бы работал на МТ5. На МТ5 что бы работал

Informations sur le projet

Budget
50+ USD