I need an EA

MQL4 Experts

Specification

GENERAL PARAMETERS:

Magic Number = 11111; Allows other Robots to trade or you can trade manually on the same account without any interference.

Comment Field = #1; For your convenience, you will get 8 different sets of parameters already attached to the Robot, so you can check which orders were placed by which parameter set and use it later to get even better results.

Position Size = 0.1; It can be changed manually or automatically with increased balance.

Position Auto Increase = true; When you start making profits, you can switch from manual Order Size to “auto” and the Robot will automatically increase the Order Size.

Position Auto Multiplier = 0.5; When you turn PositionAutoIncrease to “true”, then this variable determines how big the automatic order will be. Values between 0.5-0.9 are best. Unlike other Robots, you can use the maximal available Position Size, e.g. 2.0, 5.0 lots or even 25.0 lots and more, as the Robot closes orders almost instantly and has a very small Stop Loss, so there is little risk of losing much equity on one trade.

Max Lots = 25; Allows to set the upper trading volume limit if you want to restrict the Order Size.

Max Spread = 3.0; (in pips) Many brokers with variable or floating spreads have different values of the spread during the day, from 0.5 to 2.5 or 3.5 and more. When the spread is too high, it’s almost impossible to make profits on scalping orders. You can set this value even lower, say 1.2, but then very few trades will be open.

Risk Management = 10.0; (percentage of the balance) If the balance drops by say 10%, the Robot stops trading. This parameter is responsible for safeguarding your deposits and winnings.

Max Lost Positions = 3; If there are more than e.g. 3 consecutive losses, the Robot stops trading. It will resume automatically after the time you set up in the parameter below MaxLostResumeTime. It’s useful when the market or the platform behaves strangely.

Max Lost Resume Time = 900; (in seconds) If there are more than 3 consecutive losses, the EA stops trading and resumes after 900 seconds (15 min). You can change it to less or more, same as the MaxLostPositions.

Min Time Close To Open = 600; (in seconds) Time between positions. Useful when a broker has time restrictions between orders in case of a scalping strategy.

Position Minimal Time = 0; (in seconds) Some brokers have scalping restrictions as to the minimum time of the position being open, e.g. 2 min (120 seconds). Also in some cases we don’t want to close the order too fast and let it run for another 1, 2, or 5 minutes to make even more profits.

Position Maximal Time = 900; (in seconds) This is the Maximum time a position will be open. After that it will be force closed.

Trading Period 1, Trading Period 2, Trading Period 3 = 00:00-00:00;  You can set up to 3 different Trading Periods, when the Robot perform best, e.g. during UK and US sessions, or exclude periods when the market behaves abnormally, e.g. just before or just after the weekend.

Broker Time = true;  You can use broker time, same as on the chart, or the time on your computer, whichever is more convenient for you.

ENTRY CONDITIONS:

Entry Gap Add = 0.1; (addition) & Entry Gap Mult = 1.1; (multiplication) The most important functions of the EA. They are responsible for opening the trades when the price difference (= gap) is big enough.

Opposite Trades = false;  If you get negative orders, you can reverse them from Buy to Sell or vice versa.

Pending Orders = false;  With some ECN brokers where the Stops Level is ZERO, Pending Orders work much better than Market Orders, since they are not requoted.

Slippage = 0; With this system slippage should be set to ZERO, but if there are too many requotes setting to 1.0 or 2.0 enables the trades to be open anyway.

Mode SLTP = 0; (Mode StopLoss/TakeProfit)  You can set the way Stop Loss or Take Profit is placed, together with the order or after the order has been place. The default value is “Zero”, which automatically detects which way is best for a particular broker.

Stop Loss = true; You can decide whether to use Stop Loss or not. Having a Stop Loss is safer, so set it to “true”.

Stop Loss Extra = 0; In this EA the Stop Loss is set automatically to the lowest possible value allowed by the broker, e.g. 2, 3, 5, or 10 pips. However, in some cases brokers have very low Stop Loss level, e.g. 1, 2 or 3 pips and it would be hit instantly, so you can increase the total stop loss using this Extra Stop Loss variable. In case of some ECN brokers the Stop Loss level is always ZERO, so it’s best to use Extra Stop Loss value like 1, 2, or 5 etc. not ZERO.

Take Profit = true; You can decide whether to use Take Profit or not. Having a Take Profit is safer, so set it to “true”.

Take Profit Extra = 100; Generally it’s not necessary to use Take Profit, since we want the Robot to make as much profit as possible, so this value should be set to very high. It’s just in case when the platform freezes or there are any other reasons that the orders cannot be closed or modified, but having a Take Profit in place would make the orders close anyway.

EXIT CONDITIONS:

Use Exit Gap = true; If “true”, orders will be closed by Exit Gap (below), the same as Entry Gap, but when closing the orders. However we might want to keep the order longer and exit by Trailing Stop, TP/SL, and not when the prices are same again, so use “false” in such a case.

Exit Gap = 0.2; (in pips) It’s the same as Entry Gap; when the prices are same again, the order will be closed, unless you set UseExitGap to “false”, so the orders will be closed differently, either by TrailingStopLoss or TP or PositionMaximalTime.

Close Only Positive Positions = true;  The Robot avoids closing negative positions and will wait till a profit is made before it exits a trade.

Repeat Closing = 30; (in seconds)  The Robot will check every 30 seconds if the position is profitable, then it closes the trade.

Trailing = true; You can decide to use Trailing Stop by setting this function to true/false.

Trailing Extra = 3.0; (can be negative) It’s the same as any other Trailing Stop, but in case of this Robot it can be also negative. E.g. when the Stops Level is usually 5 pips, then this is normally the Trailing Stop. If you set “TrailingExtra” to 5, then it will be 10 pips. If you set it to “- 2”, it will be 3 pips. It cannot be less than the spread of course, like 0 or 1 pips.

All trades are opened using the “ENTRY GAP”, but they can be closed in 4 different ways:

  • “Exit Gap” (best)
  • “Trailing Stop”
  • “SL/TP” or
  • “Position Maximal Time”.


 IMPORTANT FEATURES :

  • Entry Gap – opens orders (best from 1.1 to 1.5)
  • Exit Gap – closes orders (best is 0.2)
  • Risk Management – protects capital and winnings (best 5-15%)
  • Close Only Positive Positions – the Robot will avoid closing negative positions.
  • OppositeTrades – you can reverse the orders from Buy to Sell or vice versa.
  • Pending Orders – with some MT4 brokers Pending Orders are better than Market Orders.
  • Max. Lost Positions – number of maximum consecutive losses
  • Auto Order Size – increases with the Equity
  • Time Between Orders – in case of Scalping restrictions
  • Min. & Max. Position Time – in case of Scalping restrictions
  • Minimum Stop Loss (automatic) – usually 3 to 10 pips
  • PAIRS : EURUSD;etc

Responded

1
Developer 1
Rating
(59)
Projects
182
55%
Arbitration
31
45% / 16%
Overdue
103
57%
Free
2
Developer 2
Rating
(219)
Projects
405
60%
Arbitration
13
38% / 23%
Overdue
160
40%
Working
3
Developer 3
Rating
(267)
Projects
542
50%
Arbitration
55
40% / 36%
Overdue
225
42%
Working
4
Developer 4
Rating
(182)
Projects
342
42%
Arbitration
118
12% / 73%
Overdue
104
30%
Free
5
Developer 5
Rating
(46)
Projects
73
16%
Arbitration
13
8% / 92%
Overdue
37
51%
Free
6
Developer 6
Rating
(121)
Projects
134
66%
Arbitration
36
25% / 56%
Overdue
22
16%
Free
7
Developer 7
Rating
(25)
Projects
54
37%
Arbitration
4
0% / 50%
Overdue
22
41%
Free
8
Developer 8
Rating
(219)
Projects
370
42%
Arbitration
145
17% / 41%
Overdue
124
34%
Free
Similar orders
can you help me with Ctrader i need modification on the linkhttps://docs.google.com/document/d/1fggk49xWbnwahtfOlE-U7G6muZB1FT8eWmftGiY7R-s/edit?usp=sharing can you assist with cTrader modifications to enhance functionality and improve performance. do text me if you a professional on it i will be looking forward to your response best regards
MT4 Expert Advisor 30 - 120 USD
EA sittings The EA utilises the concept of grid and hedging by creating a zone for recovering losing trades It is a continues trading EA without any stop loss. The EA initially aims to trade continually without the need to hedge. The EA enter the first trade following the direction of the moving average (when price is above or below the moving average), and only hedge when, the trade goes against the trend and reach
Would I honestly need is someone who can make a profitable EA for me that can at least make me around $80 a day starting with $50 and the EA must be able to work with exness the EA should automat trades 24/7. Broker = Exness Pairs = USD/JPY XAU/USD and etc Chart time frames = M1 M15 History = last month till last 6 months. Lot size 0.10 take profit at $2 stop
Hello i am seeking a skilled MetaTrader 5 (MQL5) developer to modify an existing Telegram signal copier. The goal is to enhance the copier's functionality, reliability, and user experience. kindly bid this job to get started immediately
Hello, I’m looking for assistance with creating or customizing a TradingView indicator to suit my trading needs. If you have experience in this area, please reach out. Your help would be greatly appreciated. Thanks
# MT4 Expert Advisor Development Rules ## Time Period Definition 1. Allow user to define a specific time period (e.g., 10:00 to 15:00). 2. Identify and store the high and low prices within this period. ## Price Breakout Detection 3. Monitor current price for breakouts above the period high or below the period low. ## Signal Confirmation (signals will be taken on m5 timeframe) 4. After a breakout, wait for a signal
HI Recently purchased VPS, But now i am getting Following message "failed to get list of virtual hosts [404]", I need one help to fix this isues and make sure my EA working on VPS, when my computer off Thank you
Where are my developers colleagues . i want you to support me on existing work i just need a little addon on it. Am still a student kindly support me. You will be get paid at the end of the work. If you want more details maybe the worth of the project or any other thing let me know. THNAKS FOR THE SUPPORT
Project Description : I am looking for an experienced developer to create a multi-platform trading bot that can execute trades across Binance, Exness, MetaTrader 4/5 (MT4/MT5), and stock exchanges. The bot should implement a trading strategy that combines the Parabolic SAR and EMA 200 indicators, with automated entry and exit conditions for both long and short positions. Key features include: Integration with
Looking for EXPERIENCED DEVELOPER with a history of creating a multi- condition EA with the appropriated stops and trailing stops. I will check your order history . Backtesting without errors will be necessary to complete the order

Project information

Budget
10 - 60 USD
For the developer
9 - 54 USD
Deadline
from 1 to 3 day(s)