EA Trend

MQL4 Uzman Danışmanlar

İş tamamlandı

Tamamlanma süresi: 4 gün

İş Gereklilikleri

Good afternoon developers:


I need to develop a simple EA.


I need a clean code, I do not want a template for the creation of the EA is used.

I do not want lines of code are not used for this EA.



The EA should operate like a 4 digit broker than 5 digits.

The EA will have to work on graphics renko.


The EA used the library errors MT4, for an alert notifying.



The template parameters of the EA facilitated me, has to be respected.



//+------------------------------------------------------------------+
//|                                             EA Trend - Renko.mq4 |
//|                                                                  |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright ""
#property link      ""
#property version   "1.00"
#property strict


extern string     ExpertName                    = "=== EA Trend - Renko ===";

extern string     GeneralParameters             = "===== GENERAL PARAMETERS =====";

extern int        Magic                         = 111;         // Manual magic number        
extern int        MaxSpreadPermitted            = 2;           // Value of maximum spread allowed        
extern int        MaxSlippage                   = 2;           // Maximum slippage allowed       
extern bool       EcnBroker                     = true;        // Boolean to define if is ECN broker or not    
extern int        NumberOfTry                   = 10;          // Number of tries to modify the orders to the broker.
extern int        MaximumVolumeSize             = 10;          // Maximum volume allowed.

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

extern string     MoneyManagement               = "===== MONEY MANAGEMENT =====";

extern int        MoneyManagType                = 0;    
extern string     MMT_0                         = "MMT = 0, Fixed Volume";
extern string     MMT_1                         = "MMT = 1, % Account Balance";

extern double     LotSize                       = 0.01;        // "MMT = 0, Fixed volume"

extern double     RiskAccountBalance            = 15;          // "MMT = 1, % Risk Account Balance"

extern string     Martingale                    = "===== MARTINGALE =====";

extern int        MartingaleType                = 0;    
extern string     MGT_0                         = "MGT = 0, NO Martingale";
extern string     MGT_2                         = "MGT = 2, Factor Multiplication";

extern double     Martingale_MultiplyOnLoss     = 2.0;         // Multiplication factor applied after each loss

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

extern string     OrderSettings                 = "===== ORDER SETTINGS =====";

extern bool       CloseNewSignalOperation       = false;           

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

extern string     Positions                     = "===== POSITIONS SETTINGS =====";
   
extern double     TakeProfit                    = 50;
extern double     StopLoss                      = 30;

  
extern int        TrailingMode                  = 0;
extern string     TM_0                          = "TM = 0, Off";
extern string     TM_1                          = "TM = 1, -- Mode 1 -- BreakEven & Trailing Stop";
                                                                                                                                 

extern string     Mode1                         = "----- MODE 1 -----";
extern double     BreakEvenStartPips            = 15;          // When the price moves to X benefit in pips move SL to BE
extern double     BreakEvenPipsLockIn           = 5;           // When the price is BreakEven +/- x pips, move SL to BE
extern double     TrailingStopPips              = 15;          // Trailing Stop in pips
extern double     TrailingStopStepPips          = 5;           // Trailing Stop Step in pips


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

extern string     IndicatorsSettings            = "===== INDICATORS SETTINGS=====";

extern string     _Indicator                    = "=====  =====";


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

extern string     Alerts                        = "===== ALERTS =====";

extern bool       AlertEnable                   = true;

//+---------------------------------------------------------------------------------------------------------------------------------+


The signals of Buys and Sells generates a single indicator.


1



The orders will be produced at the end of renko candle.

Only one order each signal.



Any further questions on the parameters of the template or the operation of the EA will transfer to the discussion area.



Best regards.

Hermo.


PD. The template parameters and the indicator will attach to the selected developer.

Yanıtlandı

1
Geliştirici 1
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
2
Geliştirici 2
Derecelendirme
(270)
Projeler
552
49%
Arabuluculuk
58
40% / 36%
Süresi dolmuş
228
41%
Çalışıyor
Benzer siparişler
I'm looking for an experience developer that can help develop an EA based Strategy below into 1 EA itself no issues if used martingale & fix lot . Symbol : XAUUSD 1m-5m-15m i will explain to the developer more datils before doing the EA. i will send the indicator and the set point. 1- indicator extreme 2- stochastic Oscillator 3- stochastic indicator good luck
I’m looking for an experienced MQL4 / MQL5 developer to help with an indicator project. Project overview: I have an existing MT4 arrow indicator that I’ve used for several years. The indicator is compiled only (.ex4) — source code is not available. It does not repaint . The indicator has stopped displaying properly (likely outdated). What I need: Rebuild the indicator from scratch by analyzing its behavior and
Missy 30 - 600 USD
Develop an Expert Advisor trading trend reversals. Reversal signals will be generated based on Price Action patterns. Trend will be determined based on ADX, Alligator and MACD, while the indicator selection should be available in the EA's input parameters
Hello, I’m looking for a professional MQL4/MQL5 developer to review, backtest, and optimize an EMA-based Expert Advisor to improve its win rate. The EA is already developed, and the task involves analyzing the existing logic, optimizing parameters, and providing performance improvements with clear results. Experience with strategy optimization and scalping systems is required
I am looking for an experienced MQL5 developer with strong skills in AI/Deep Learning integration to build a next-generation Expert Advisor (EA) for MetaTrader 5. 1. Project Overview We are seeking a highly skilled and experienced developer to build a next-generation Forex Expert Advisor (EA) for MetaTrader 5. The core innovation of this project is an EA that relies 100% on a custom deep learning AI model
Hi 👋 I’m looking for an MQL5 programmer to help me with a very simple task 😊 📌 What needs to be done: Convert an existing Python trading strategy into a simple MT5 Expert Advisor Logic is already finished and tested in Python ✅ EA only needs to execute trades based on given rules (no fancy UI, no over‑engineering) Intraday strategy, one symbol, one timeframe ⏱️ 📌 What I provide: Full Python code 📄 Exact trading
Below is the same information written as a continuous, professional text , clear and suitable for a requirements description field. This project consists of adjusting an existing Expert Advisor for MetaTrader 5, written in MQL5. The original EA structure, logic, and trading methodology must be fully preserved, with no rewriting, simplification, or replacement of the strategy. The only required functional change is to
//+------------------------------------------------------------------+ //| MT5 Forex Scalping EA | //| Trend Pullback Scalper | //+------------------------------------------------------------------+ #property strict #include <Trade/Trade.mqh> CTrade trade; // ===== INPUTS ===== input double RiskPercent = 0.5; input int EMAFast = 20; input int EMASlow = 50; input int RSIPeriod
I'm seeking an experienced MQL5 developer to create a robust Expert Advisor (EA) that integrates 4 powerful strategies into a single, cohesive system. The EA will trade XAUUSD exclusively and adhere to strict risk management principles, avoiding grid and martingale techniques. *Strategy Overview* The EA will incorporate the following strategies, each with its own unique approach: 1. *High Timeframe Trend Reversal*
i want to convert icc /cct strategy into an automated bot, if any one can do it please let me know so i send a video describing exaclty what i want

Proje bilgisi

Bütçe
30 USD