EA MT5

MQL5 Experts

Tâche terminée

Temps d'exécution 13 jours
Commentaires de l'employé
Thank you.

Spécifications

Hello everyone:



I need an EA for MT5

Only one indicator signals are used

The EA will have the following parameters

//+------------------------------------------------------------------+
//|                                                       EA_MT5.mq5 |
//|                                                                  |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright ""
#property link      ""
#property version   "1.00"


enum MoneyManagType              {_Fixed_Volume_=0, _Risk_Factor_By_Free_Margin_=1};
enum MartingaleType              {_Off_=0, _Factor_Multiplication_By_Trade_=1};

enum Control_Position            {_Buy_And_Sell_=0, _Only_Buy_=1, _Only_Sell_=2};
enum Order_Mode                  {_Market_Order_=0, _Stop_Order_=1};
enum PriceOfExecution_StopOrder  {_Close_Price_=0, _High_(Buy)_/_Low_(Sell)_=1};

enum Setting_TakeProfit          {_Off_=0, _In_Pips_=1};
enum Setting_StopLoss            {_Off_=0, _In_Pips_=1, _BreakEven_=2, _Trailing_Stop_=3, _1_BreakEven_2_Trailing_Stop_=4};



//***********************************************************************************************************************************

input string         ———————Name_EA——————————————— = "== EA_MT5 ==";

input string         ———————GeneralParameters————— = "===== GENERAL PARAMETERS =====";

input int            Magic                         = 101102;

input bool           SpreadProtection              = true;           // Spread protection
input double         MaxSpreadPermitted            = 2.0;            // Value of maximum spread allowed pips

input double         MaxSlippage                   = 2.0;            // Maximum slippage allowed pips

//***********************************************************************************************************************************
//***********************************************************************************************************************************

input string         ———————MoneyManagement——————— = "===== MONEY MANAGEMENT =====";

input MoneyManagType      MMT                      = 0;    
//input string     MMT_0                              = "MMT = 0, Fixed Volume";
//input string     MMT_1                              = "MMT = 1, By Free Margin";

input double         LotSize                       = 0.01;

input double         RiskFactorByFreeMargin        = 2.0;


//***********************************************************************************************************************************
//***********************************************************************************************************************************

input string         ———————Martingale———————————— = "===== MARTINGALE =====";

input MartingaleType      MGT                               = 0;    
//input string     MGT_0                                       = "MGT = 0, Off";
//input string     MGT_1                                       = "MGT = 1, Factor Multiplication By Trade";


input double         Factor_Martingale_MultiplyByTrade      = 2.0;

//***********************************************************************************************************************************
//***********************************************************************************************************************************

input string         ———————OrderSettings————————— = "===== ORDER SETTINGS =====";

input Control_Position  CP                                  = 0;
//input string          CP_0                                   = "CP = 0, Buy And Sell";
//input string          CP_1                                   = "CP = 1, Only Buy";
//input string          CP_2                                   = "CP = 2, Only Sell";

input Order_Mode        OT                                  = 0;
//input string          OM_0                                   = "OM = 0, Market Order";
//input string          OM_1                                   = "OM = 1, Stop Order";

input PriceOfExecution_StopOrder  POE_SO                    = 0;
//input string          POE_SO_0                               = "POE_SO = 0, Close Price";
//input string          POE_SO_1                               = "POE_SO = 1, High (Buy) / Low (Sell)";

input double         OrderDistance_StopOrder                = 4.5;   // Distance in pips from
                                                                  

//***********************************************************************************************************************************
//***********************************************************************************************************************************

input string     ———————PositionsSettings————————— = "===== POSITIONS SETTINGS =====";

input Setting_TakeProfit       STP                    = 0;
//input string     STP_0                                 = "STP = 0, Off";
//input string     STP_1                                 = "STP = 1, In Pips";

input double         TakeProfit_Pips                  = 50.0;

input Setting_StopLoss         SSL                    = 0;
//input string     SSL_0                                 = "SSL = 0, Off";
//input string     SSL_1                                 = "SSL = 1, In Pips";
//input string     SSL_2                                 = "SSL = 2, BreakEven";
//input string     SSL_3                                 = "SSL = 3, Trailing Stop";
//input string     SSL_4                                 = "SSL = 4, 1º BreakEven - 2º Trailing Stop";

input double         StopLoss_Pips                    = 20.0;

input double         BreakEvenStartPips               = 15.0;
input double         BreakEvenPipsLockIn              = 5.0;

input double         TrailingStartStopPips            = 100.0;
input double         TrailingStopPips                 = 25.0;
input double         TrailingStopStepPips             = 5.0;

//***********************************************************************************************************************************
//***********************************************************************************************************************************

input string      ———————IndicatorSettings———————— = "===== Indicator Settings =====";

input string      Indicator_            = "--- ---";
input string      _Parameters_                     = "===== PARAMETERS =====";
//
//
//
//
//
//


//***********************************************************************************************************************************
//***********************************************************************************************************************************


Any questions you have about the parameters you have set and must be respected, please ask

I hope your offers

a greeting

Simon

Répondu

1
Développeur 1
Évaluation
(647)
Projets
1295
67%
Arbitrage
84
26% / 49%
En retard
338
26%
Gratuit
2
Développeur 2
Évaluation
(42)
Projets
70
43%
Arbitrage
6
33% / 50%
En retard
19
27%
Gratuit
3
Développeur 3
Évaluation
(807)
Projets
1382
72%
Arbitrage
113
29% / 48%
En retard
343
25%
Chargé
4
Développeur 4
Évaluation
(2)
Projets
6
33%
Arbitrage
2
0% / 50%
En retard
0
Gratuit
5
Développeur 5
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
Commandes similaires
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market
I want grate robot for making profits that know when to start a good trade and close a trade and must be active all time to avoid lost of money
I have developed a very strong TradingView strategy in Pine Script but unfortunately, a third-party connector is requiired and in my opinion, I want a more direct connection. I am not brilliant at coding, but I have coded the majority of the MT5 code and I would like you to make sure that the MT5 code matches my TradingView script and executes the same way as the TradingView script that I will provide if you are
Mbeje fx 50+ USD
I like to own my robot that why I want to build my own.i like to be a best to every robot ever in the life to be have more money
I need an MT5 EA that can do the following: I have to give the EA a price in advance, when the price is reached the EA has to automatically place a buy stop or sell stop order 0.5 pips below or above the price. Is this possible
Dr Pattern 30+ USD
good day i need the service of the seaso coder to help me fix my ea The Job required 1 knowledge of Mt4 and Mt5 indicator coding 2. Telegram code 3. ability to code indicator to work on multiple Time frame combine to trade 4 Ability to Join two or three indicator on same ir different time frame if you have these skill please let chart i will discuss the details of the Job inside to you The required day including
Good day, I want someone to help me create a universal news filter with on/off switch, with start and end settings, and drawdown control with magic number of EAs, etc. Thanks
Hello, I am looking for a professional programmer to optimize my existing EA integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. i want it to be an EA that can be trusted to carry trade with the help of chat gpt and also have a very low drawdown
Hello, I am looking for a professional programmer to create a trading expert on the MT4 platform, integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. Further details will be provided to the applicants later

Informations sur le projet

Budget
Délais
de 1 à 5 jour(s)