MT5 EA Development for Non-Hedging Broker

MQL5 Experts C++ C# Java JavaScript Python

Termos de Referência

Meta EA
*****************************************************
Variables
Stop loss : x pips (Distance in Pips), 10 pips plus ,minus the most recent bottom or top of lowest low or highest high , depending on either it is long or short trade.
Next trade: Y pips (Distance in Pips);
Y= Adding in positive on an opening of 4th candle, after a 3rd consecutive candles close in the same direction.... Not a fixed pip distance.
The next trade must be added above the last trade price if it is a long trade and below the price of the last trade if it is short trade. The condition for taking the next trade remains the same
That the 3 consecutive candles closed in the same direction+ Distance in pips between the opening price of the last trade and the asking price of the 4th candle = set in variables. Before the next trade is taken on the opening of 4th Candle price.
Z= Trade size
Following are variables in setting
1-Direction to open the First trade Buy /sell
2- Stoploss X points from nearest high/low (Numeric value)
3-Next trade distance x consecutive candles in our direction (Numerical value)
4-Number of consecutive candles to open new trade (numerical value)
5-Start Time
6-End time
7- Lot size (from 0.01 to high numbers)
8- Distance between the entry point and sl trail position in profit (Pips)
9- Number of trades limit in positive direction (Numerical)
10-Multiply Factor for increased lot size in flip trades (numerical value)
MECHANISM OF TAKING TRADES
At the opening of EA, the trader will select either short or long trade to start the EA.
If the last Z trade goes in to profit = Y pips (Distance set in parameters+ 3 consecutive candles closed in same direction of the trade.
Then
Add another Z trade in the same direction And move the SL of previous trade in to its entry position + pips in profit set in variable.
Continue on adding new trades as per above conditions
Till the Limit of adding trades in positive direction is met (which is set in the variables parameters)
For example: If the Multiply Factor variable is set for 3 trades, The EA Must close all trades in profit on the opening on 3rd trade in positive, according to set conditions And take a new trade of the set lot size in the same direction of the last trade.
If the last trade goes in to loss = X pips and stop loss hit.
Then
Add A single new trade in OPPOSITE direction with INCREASED LOT SIZE by adding the lot sizes of last trades which were stopped out, multiplying by the set Factor (in variable) .
I.e. If the total of lot sizes of the last trades which hit SL is 4 lot sizes, and the factor is set 2, then the new lot size will be 4*2= 8 lot size of this new trade.
SL of this new trade still be the same as per conditions, recent low or high of the candles in chart.
WE WILL continue to increase the lots size of the flip trades at every SL hit as per above conditions.
If any of these higher lot trades goes in to profit, the next trade will be of a REGULAR LOT SIZE set in parameters and the SL of the higher lots size trade will be moved to the entry + point .
If the 2nd trade also goes in to profit, and the 3rd trade is taken as per set conditions, the EA will check the limit set in parameters of positive trades and if it is set for 3 trades, the EA will close all trades in profit at the opening of 3rd trade and take a new trade of regular lot size in the SAME direction of the last trade.
TRAILING OF SL
Each trade will have stop loss pips.
As soon as the next trade is taken, the SL should trail to the entry position of last trade.
There is no profit target of any trade, however, all trades must be closed whenever the limit of the positive trades taken is met and all trades must close in profit.
EA must have a time schedule for start and stop session time.
Conditions of adding trades in positive
After taken the initial trade, the EA monitors the candles and take a next trade only
1- On the opening of following candle when the Z consecutive candles are closed in the same direction of the last trade (Z being a numerical count of consecutive candles define in settings)
&
2- If the distance between Ask and previous order open price is more than Y points being a variable defined in settings.
WHAT IF ONE condition is met but not the other?
i.e the 3 consecutive candles condition is met but the distance Y is not met , The EA will now only monitor the distance and as soon as the Y variable is met , IT will take next trade.

Respondido

1
Desenvolvedor 1
Classificação
(152)
Projetos
228
80%
Arbitragem
22
27% / 50%
Expirado
11
5%
Livre
Publicou: 24 artigos, 1882 códigos
2
Desenvolvedor 2
Classificação
(460)
Projetos
481
75%
Arbitragem
5
80% / 0%
Expirado
0
Livre
Pedidos semelhantes
I have an issue with my ninja script and i would like you to help me straighten things I wanted to create an indicator and i have the source code already but i am getting compiling errors on my NinjaTrader And i tried fixing the error it still same I sent 3 images here for you to understand the errors and i would like to ask if you can help me fix it so i can go ahead and compile my source code. Thanks
Good day, I would like to build an automated trading system for Ninjatrader using 2 MACD, a Supertrend, and a moving average indicator. I want the option to adjust the indicator settings, the ability to trade at three different times, and the option to receive alerts. I want to get an idea of what that will cost me. It will enter trades on all blue take one contract out at a fixed point, move the stop to break even
"Hello! I am an experienced programmer specializing in automated trading software for MetaTrader 4 (MQL4) and MetaTrader 5 (MQL5). My goal is to help traders turn their manual strategies into fully automated robots (Expert Advisors) and custom indicators. My services include: Developing Expert Advisors (EA) from scratch based on your strategy. Creating Custom Indicators and Scripts. Modifying existing EAs (adding
I have a simple strategy that need coding on tradingview Strategy using high low at seleted time and when breakout to entry buy sell. Everything will be explained on private
I am looking for an experienced MQL5 developer to modify and enhance my existing Expert Advisor, "Gold Levels Trader". The current version has a low win rate (~30%) and issues with ATR-based Stop Loss execution. I want to replace the current "pips drop/rise" logic with Fibonacci Retracement levels for entry signals, implement a Daily Drawdown Limit , and add Pending Orders functionality
I want developer who know how to create bot which immediately transfer specific crypto coin deposit to one crypto address to another specific address in just a second,, if you know about this then only comment on this post
So the things we need in algorithm of mql5 language EA in mt5 1. Depending on timeframe it can recognise the previous swing high and low 2. Timeframe is 5m,15m,1h,4h 3. It can recognise the basic Market bias that is market is bullish or bearish we can identify using (ema,rsi,basic smc bias,ict bias structure mapping) or use anything to find bias structure 4. EA should have option to change timeframe and change risk
require the development of a high-speed, fully automated trading Expert Advisor (EA) for MetaTrader 5 , optimized for live trading on both Deriv and Exness . The EA must be designed for fast execution, low latency, and reliability on real-money accounts , with full compatibility across broker-specific contract specifications, tick sizes, tick values, pricing formats, and volume rules. It should automatically detect
# Copyright 2025, MetaQuotes Ltd. # https://www.mql5.com import importlib . util mt5_spec = importlib . util . find_spec ( "MetaTrader5" ) if mt5_spec is None : mt5 = None else : import MetaTrader5 as mt5 # pyright: ignore[reportMissingImports] def main (): if mt5 is None : print ( "MetaTrader5 module not available" ) return print ( 'Python executable:' , __import__ ( 'sys' ).executable) ok = mt5
Scope of Work Develop 15 individual Expert Advisors (MT4 and/or MT5) Each EA will have: Unique trade logic and execution rules Configurable inputs (risk %, lot size, TP/SL, filters, sessions, etc.) Clean, modular, well-commented code Error-free compilation Backtest-ready functionality Core Features (Across EAs) Market & pending order execution Risk-based position sizing Time/session filters Trade limits (per day /

Informações sobre o projeto

Orçamento
30 - 45 USD