GAP_LAG EA

MQL4 Experts

Trabalho concluído

Tempo de execução 2 dias

Termos de Referência

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

 


Arquivos anexados:

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

Respondido

1
Desenvolvedor 1
Classificação
(1100)
Projetos
1782
61%
Arbitragem
14
64% / 7%
Expirado
84
5%
Livre
2
Desenvolvedor 2
Classificação
(879)
Projetos
1393
67%
Arbitragem
117
32% / 42%
Expirado
215
15%
Trabalhando
3
Desenvolvedor 3
Classificação
(4)
Projetos
5
0%
Arbitragem
3
0% / 67%
Expirado
2
40%
Livre
4
Desenvolvedor 4
Classificação
(121)
Projetos
134
66%
Arbitragem
36
25% / 56%
Expirado
22
16%
Livre
5
Desenvolvedor 5
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
6
Desenvolvedor 6
Classificação
(491)
Projetos
1017
58%
Arbitragem
29
28% / 24%
Expirado
132
13%
Livre
Pedidos semelhantes
Zzz 30+ USD
// กำหนดค่าตัวแปรพื้นฐาน input double lotSize = 0.1; // ขนาดล็อตที่ต้องการ input int takeProfit = 50; // ระยะ Take Profit (จุด) input int stopLoss = 50; // ระยะ Stop Loss (จุด) input int magicNumber = 123456; // หมายเลข Magic Number input int smaPeriod = 14; // ช่วงเวลา Simple Moving Average (SMA) // เวลาที่ออเดอร์ล่าสุดถูกเปิด datetime lastOrderTime = 0; // ฟังก์ชั่นหลักของ EA void OnTick() { //
Mobile robot 50 - 100 USD
I want a profitable scalping EA robot for mt5 and mobile phones (licence key should be provided).the video link attached below indicates how the EA robot should operate it.it analyses the market before taking trades and it trades candle to candle .also coding samples are provided on the video .it should be applicable to all timeframes.it should trade indices(Nas100,US30,S&p500,GER30,)
I use the translator I hope to make myself understood. I'm looking for a cyclical indicator. mt5. I attach videos to understand how it works. to be inserted at any point of the graph. It is possible to change the color and thickness of the line
This EA must have the following functions together: BE: place BE when the price reach a certain gain in PIPS and you can choose the offset too, so, for example it activates after 10 pips with 1 pip of offset so you can have profit with BE too Auto SL and TP Can manage the trades made by phone when MT5 is open in the PC or VPS Trailing stop (step by step): I can decide at what number of pips the trailing stop get
This is a strategy based on crossing two trend indicators on the second timeframe (1s, for example). We work not only with the market but with the limit orders as well (robot must "read" an order book). Read the whole instruction please for more details. Speak Russian, English
Martingale EA for MT5 30 - 100 USD
Criteria: Only one trade at a time. Cannot open another trade if one is running Trade on EURUSD only, once job is completed I will be happy to schedule more for other pairs You choose entry strategy and criteria win rate must be above 50% in long term backtest of EURUSD Every trade has got TP and SL Trades to last about a day, few trades a week, at least 10 pips gain per trade, so that it can be launched on normal
I have a indicator, mql file. The signals are seen below on a EURNZD H1 chart. Very important to get accurate entries. The signal to trade is the first tic after the the indicator signal paints. I've tried to demonstrate that below. Other than that the EA will have a lot size escalation, an on-screen pip counter, a button to stop taking new trades, SL/TP, and magic number. I would like the indicator to be within the
I would like to create an EA based on the Shved Supply and Demand indicator. you can find the Shved Supply and Demand v1.7 indicator in the following link https://www.mql5.com/en/code/29395 NB: Checks the trading robot must pass before publication in the Market ( https://www.mql5.com/en/articles/2555 ) MQ5 file to be provided
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market

Informações sobre o projeto

Orçamento
50 - 350 USD
IVA (19%): 9.5 - 66.5 USD
Total: 59.5 - 416.5 USD
Desenvolvedor
45 - 315 USD
Prazo
de 2 para 5 dias