Tarea técnica

Hello.

I already have a MT4 and MT5 working EA script and robot based on MA and Williams Percent Range named POMADE SWINGPRO v5.0 

The EA was supposed to be able to be able to initiate BUY trades at an input parameter setting of the MA_BUY (tick value set to 20, or higher) using the WPR setting parameter (tick value set to 15 or more) as source at an input level of say 10 or 20%.

The BUY TakeProfit should be at (1) preset input value of a preset PIP value OR (2) Modified Trailing TakeProfit is continuously set and upgraded at every preset input PIP value (say every 100 PIP) adjustment until the MA_BUY hits the Upper Swing WPR Level of WPR_BUY_TP setting at 80 or 90% or higher. on the chart.

Also the EA will initiate SELL trades at an input parameter setting of the MA_SELL (tick value set to 20, or higher) using the WPR setting parameter (tick value set to 15 or more) as source at an input level of say 90 or 80%. 

The SELL TakeProfit should be at (1) preset input value of a preset PIP value OR (2) Modified Trailing TakeProfit is continuously set and upgraded at every preset input PIP value (say every 100 PIP) adjustment until the MA_SELL hits the Lower Swing WPR Level of WPR_BUY_TP setting at 20 or 10% or lower on the chart.

For every BUY or SELL trade initiated by the EA, an Alert Telegram Message is sent to a preset Phone Number.

For every TAKE PROFIT or STOP LOSS taken by the EA, an Alert Telegram Message is sent to a preset Phone Number with summary of Account Balance, Floating Equity and Drawdown Percentage Level.

Upon initiation of the EA on the MT4/MT5 Account, a Welcome Information page is displayed leading to an Input Parameter Page.

An EA license based on Monthly-Time Control setting is required with an Unlimited control setting to infinity version given to me while another User version (if necessary) will be provided with 1 will be for  a month, 2 will be for 2 months, 12 will be for 1 year. This feature must be locked in the license-controlled version and can only be extended or unlocked by a renewal code that can automatically adjusted, updated or refresh the Monthly-Time Control Setting when inputted by the User into the RENEWAL CODE Tab. 

A TRADE SCAN upgrade is required (if possible now) whereby the Robot can pre-scan all active TRADE PAIRS to decide on NEW PROFITABLE TRADES that can be implemented based on existing preset input parameters.

Code Optimization of the EA can also be advised based on programming expert experience after implementing the key features mentioned above. The goal is to increase the profitability of the EA at present to a higher level. In the current state, the EA gives a very high profit on pairs in a downtrend due to good MA_SELL but does not have a good MA_BUY activity because the MA_BUY and MA_SELL is not following the WPR SWING TAKE-PROFIT input parameter settings as expected.
This EA should be applicable to work on all Forex pairs, Indices, Gold, Index, Stocks, etc....

NOTE: I operate a strict non-use, non-reuse, non-share professional policy that the appointed programmer must NEVER use the EA on personal live account for personal gain or reuse the TRADING STRATEGY on another project or share the EA code strategy with anyone or for personal use whatsoever. This is to protect the market and commercial viability of the EA investors and respect their intellectual property ownership of the EA strategy they have developed for several years.

MT4 and MT5 source files will be shared later after contract job is agreed.


Best Regards!!!

Han respondido

1
Desarrollador 1
Evaluación
(5)
Proyectos
4
50%
Arbitraje
4
0% / 75%
Caducado
0
Libre
2
Desarrollador 2
Evaluación
(3)
Proyectos
1
0%
Arbitraje
5
0% / 100%
Caducado
0
Libre
3
Desarrollador 3
Evaluación
(152)
Proyectos
228
80%
Arbitraje
22
27% / 50%
Caducado
11
5%
Libre
Ha publicado: 24 artículos, 1882 ejemplos
4
Desarrollador 4
Evaluación
(52)
Proyectos
58
59%
Arbitraje
4
0% / 25%
Caducado
1
2%
Libre
5
Desarrollador 5
Evaluación
(461)
Proyectos
488
70%
Arbitraje
6
67% / 0%
Caducado
2
0%
Libre
6
Desarrollador 6
Evaluación
(1)
Proyectos
0
0%
Arbitraje
1
0% / 100%
Caducado
0
Libre
Solicitudes similares
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 () {
1. Title Development of a Custom MQL5 Expert Advisor for XAUUSD (MetaTrader 5) 2. Requirements Specification Overview: I am looking for an experienced MQL5 developer to build a robust, fully custom Expert Advisor (EA) for MetaTrader 5 tailored for trading Gold (XAUUSD). Core Specifications & Features: Asset & Timeframe: Designed specifically for XAUUSD. Timeframe should be selectable directly from the EA inputs
SPECIFICA TECNICA: Cerco uno sviluppatore MQL5 esperto per sviluppare da zero un Expert Advisor completamente nuovo per XAUUSD su MT5. Non desidero un semplice Expert Advisor basato su indicatori fissi. Desidero un sistema di trading dinamico e adattivo , in grado di adattare il comportamento proprio alle diverse condizioni di mercato di XAUUSD. Lo sviluppatore può utilizzare tecniche appropriate quali trend

Información sobre el proyecto

Presupuesto
30 - 40 USD
Plazo límite de ejecución
de 3 a 10 día(s)