GAP_LAG EA

MQL4 Experts

Job finished

Execution time 2 days

Specification

Hello, I need a programmer who can program this EA for MT4.

Please see below and let me know if you like to do this job.

 

Thanks a lot.

 

Best regards

 

 

Magic Number = 11111;

Allows other EA to trade or you can trade manually on the same account without any interference.

Comment Field = #1;

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; NEW!

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; NEW!

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; NEW!

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; NEW!

If you get negative orders, you can reverse them from Buy to Sell or vice versa.

Pending Orders = false; NEW!

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) NEW!

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 A 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; NEW!

The Robot avoids closing negative positions and will wait till a profit is made before it exits a trade.

Repeat Closing = 30; (in seconds) NEW!

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”.


 

BUILT-IN FUNCTIONS 

Messaging – you will get comments on the trading chart and in the Expert Tab about the orders, problems, causes of stoppage of the trading, etc. so you will know what happened and what actions should be taken if necessary.

Force SL/TP – the Robot will try to force place Stop Loss and Take Profit until it’s successful, so the orders are protected by SL and TP.

Lag Detection – if the broker’s market prices are not the same as other brokers for a longer time (“false feed”), the Robot will be able to deal with it.

Spreads Recognition – the “MT4 EXPERT ADVISOR” can deal both with fixed and variable spreads as well as with 5-digit spreads, e.g. 1.48725.

Symbol Recognition – most common symbol is with no extension, e.g. EURUSD, but some brokers have additional marks after or before the symbol, e.g. EURUSD#, EURUSDfx, EURUSDVIP, etc. The “MT4 EXPERT ADVISOR” can deal with all those symbols and marks.

Broker Type Recognition – in previous versions it was necessary to manually decide if the broker is ECN or MM, has 4 or 5 digit quotes. Now the EA detects all that information automatically including leverage, account currency, etc. It’s fully automatic now.

 


TIMEFRAME:

  None (only price changes)

INDICATORS :

  None (only price changes)


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


SPREADS :

  Fixed 1-2 pips

  Variable 0.5-2.0

  4-digits and 5-digits

BROKERS :

  ECN/STP (only some, with and without commission) Market Makers (MM) which allow scalping

 


Files:

PNG
image002.png
329.4 Kb
PNG
image003.png
162.7 Kb

Responded

1
Developer 1
Rating
(1091)
Projects
1771
61%
Arbitration
14
64% / 7%
Overdue
84
5%
Working
2
Developer 2
Rating
(878)
Projects
1391
67%
Arbitration
117
32% / 42%
Overdue
215
15%
Working
3
Developer 3
Rating
(4)
Projects
5
0%
Arbitration
3
0% / 67%
Overdue
2
40%
Free
4
Developer 4
Rating
(121)
Projects
134
66%
Arbitration
36
25% / 56%
Overdue
22
16%
Free
5
Developer 5
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
6
Developer 6
Rating
(490)
Projects
1016
58%
Arbitration
29
28% / 24%
Overdue
132
13%
Free
Similar orders
I'm looking for an expert MQL5 developer that can create an EA that's based on my price action trading strategy with no indicators. The EA must analyze trades based on my price action rules, enter trades based on my price action rules, manage trades based on my price action rules and exit trades based on my price action rules
hi hi there i have an strategy on tradingview and i want to automate it like metatrader EA so i want the strategy to open and close trade automaticlly on tradingview
We are looking for an experienced Expert Advisor Developer who can build a customized MT5 Expert Advisor for us. The Expert Advisor would use two built-in indicators as entry/exit signals and our own risk management strategy with customizable inputs. The goal is to create a reliable and efficient trading tool that can automate our trading process on the MT5 platform. Skills required: - Strong understanding of
I need stochastic div (hidden &regular ea) that should perform task in all tf's ..divergence is a repaint stly so i want to use it with candlestick flips .. so bet for it
Hello, I have an indicator from a friend and I'd like to replicate it on my own TradingView or MT5 platform. Could you assist me with that?. Here is the link
so basically I have an EA(mql5), AI script(python), flask server and socket server both on python. Now this is an experimental script as I am trying to learn. However the EA is not entering any trades. How much would it cost for you to troubleshoot this for me? Thank you in advance
NEW FUNCTION 50+ USD
La idea es la siguiente, sería un EA semi automático. Yo como trader opero en zonas. En adelante las vamos a denominar ``zonas calientes´´. El EA debe que necesito debe operar conforme a 4 zonas calientes que yo configure en el mismo. ¿Qué hará el EA en cada una de esas zonas calientes que yo he configurado? En cada una de estas zonas el EA debe realizar hedging (crear un rango en el cual el EA entrara en sell o en
I have the bot just over half made, from another developer who let me down and decided they no longer wished to finish the project, so I have a basic example of the fundamentals of what it could look like, although multiple functions I require do not work, but I can show this to you on request. There are multiple features that I require, so please read the in depth requirement sheet on the attachment. Function: To
I need EA that works on MT5 to be able to do the following: - Can recognize Support/Resistance area - Can recognize VWAP direction. - Can recognize RSI. - Can recognize Double Top/bottom, Bullish/Bearish hammer candle, Bullish/bearish engulfing candle. - Ability to set Stoploss below/above support/resistance, but risk must be fixed at a certain price. - Stoploss
I want a program that will help calculate and enter the market on full margin for me. I just need to put in the price for entry, Stop loss and TP then it will calculate the lot sizes for entering the trade on full margin on Mt5

Project information

Budget
50 - 350 USD
VAT (19%): 9.5 - 66.5 USD
Total: 59.5 - 416.5 USD
For the developer
45 - 315 USD
Deadline
from 2 to 5 day(s)