Prabu-EA

MQL4 Experts

Spécifications

If anybody is interested in developing the code for this EA, which needs to run in MT4 platform, Please give your quote.

External Selections:

Currency Pair:

Lot:   e.g. (from (0.01) (1000 Unit))

Time Frame:

No. of Bars / candlestick:

Stop:   e.g.Distance from MVG (PIPS in 5 decimals: 0.00010):

Target:

Trailing Stop:

Buy only:

Sell only:

Buy & Sell:

Strategy Overview:

EA should accommodate any currency pair, any lot size (units also), any time frame (even from 1 minute TF) and only buys or sells or both as per the external selection. Trailing stop (TS) based on the Distance from MVG. (PIPS in 5 decimals: 0.00010)

Only one currency pair should allow to trade as per the selection.

  1. Only one position at a time. E.g Buy or Sell.
  2. Trailing stop and Reverse Order should be at the same rate always. That means, if Trailing stop triggers, simultaneously Reverse entry order should also trigger. i.e. Trailing Stop and Reverse orders should be independent, one order for Trailing stop and other for Reverse order. After Reverse order triggered, again Reverse order should have Trailing stop order. It should be a continuous process.
  3. Trailing Stop orders should place separately as some of the Brokers do not allow Trailing stop orders placed together.

EA Conditions:

E.g. Simple Moving Average (SMA) is 100 and Time Frame (chart) 1 Hour for EURUSD pair.  SMA Price is 1.42505 and the Distance from MVG (external Value) is 0.00100 (PIPS in 5 decimals).

1. EA should confirm first that there is no open position before placing fresh orders.  If there is any open position, e.g. Long Open position, EA should place only Stop Loss (sell) order and a Reverse order (sell) as per the below conditions.

2. For New order EA should place a BUY order at 1.42605 (1.42505 + 0.00100) and immediately place Trailing Stop (TS) order (SELL) at 1.42405 (1.42505 – 0.00100) and a SELL order at 1.42405 (1.42505 - 0.00100) and immediately place Trailing Stop (TS) order (BUY) at 1.42605 (1.42505 + 0.00100).

3. If Buy order triggered, Trailing stop order and Reverse order must always be on the SMA Price. E.g If the SMA rate was changed to 1.42755 by next 1 hour, TS (SELL) should be (1.42755 - 0.00100) = 1.42655 and SELL order should be (1.42755 – 0.00100) = 1.4265 and its Trailing Stop (BUY) should be (1.42755 + 0.00100) = 1.42855.

4. If the first BUY order Trailing Stop triggered and position closed, simultaneously SELL order also be triggered and SELL position opens with a Trailing Stop.  EA should open n BUY order, as the previous BUY order is closed. Like this, EA should continuously open orders. (That means, always there should be an open position with a Trailing Stop and a reverse order with a Trailing Stop.)

5. A very important point is that the Trailing Stop which is initially placed should always move in favour, even if SMA moves in the opposite direction. That means, BUY order triggered at 1.42605 and Trailing Stop is 1.42405, if the SMA is 1.42505. After opening the position SMA moves to 1.42455, actual Trailing Stop is 1.42355 (1.42455 – 0.00100), this should NOT be allowed as this will increase the loss from 20 pips to 25 pips and more. Maximum Stop Loss should always be 20 pips. Trailing Stop should always move in favor and not in opposite direction. Reverse order should also have the same logic as Trailing Stop and Reverse order rates are always the same.

6. EA should have Money Manager.

If any clarification, please contact email: sprabusg@gmail.com

Thanks & regards

Prabu

Répondu

1
Développeur 1
Évaluation
(47)
Projets
140
49%
Arbitrage
9
56% / 0%
En retard
27
19%
Gratuit
2
Développeur 2
Évaluation
(461)
Projets
902
77%
Arbitrage
25
16% / 68%
En retard
100
11%
Gratuit
3
Développeur 3
Évaluation
(71)
Projets
254
53%
Arbitrage
16
50% / 38%
En retard
83
33%
Gratuit
4
Développeur 4
Évaluation
(182)
Projets
342
42%
Arbitrage
118
12% / 73%
En retard
104
30%
Gratuit
5
Développeur 5
Évaluation
(195)
Projets
395
28%
Arbitrage
155
20% / 52%
En retard
112
28%
Gratuit
6
Développeur 6
Évaluation
(169)
Projets
218
50%
Arbitrage
6
17% / 67%
En retard
11
5%
Gratuit
7
Développeur 7
Évaluation
(488)
Projets
1014
58%
Arbitrage
29
28% / 24%
En retard
131
13%
Travail
8
Développeur 8
Évaluation
(18)
Projets
37
43%
Arbitrage
6
17% / 50%
En retard
17
46%
Gratuit
9
Développeur 9
Évaluation
(82)
Projets
150
29%
Arbitrage
9
44% / 11%
En retard
46
31%
Gratuit
10
Développeur 10
Évaluation
(546)
Projets
1327
59%
Arbitrage
28
82% / 0%
En retard
10
1%
Gratuit
11
Développeur 11
Évaluation
(2)
Projets
5
20%
Arbitrage
2
50% / 0%
En retard
0
Gratuit
12
Développeur 12
Évaluation
(44)
Projets
128
66%
Arbitrage
10
20% / 60%
En retard
35
27%
Gratuit
13
Développeur 13
Évaluation
(1)
Projets
3
33%
Arbitrage
2
0% / 100%
En retard
1
33%
Gratuit
14
Développeur 14
Évaluation
Projets
1
0%
Arbitrage
0
En retard
1
100%
Gratuit
15
Développeur 15
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
16
Développeur 16
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
Commandes similaires
// Define the properties input int ShortPeriod = 12; input int LongPeriod = 26; input double LotSize = 0.1; // OnTick function is called every time there is a price update void OnTick() { double shortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double longMA = iMA(NULL, 0, LongPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double prevShortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 1);
Necesito un bot decente para prueba de fondeo y también cuenta personal, scalp, no grid, no martingale, no practicas prohibidas, algo objetivo, confiable y rentable... 5 Min mínimos de duración por operación, algo ya hecho y bactesteado en cuenta real y de fondeo. Necesito algo agresivo, constante pero que no exponga el capital... prefiero una estrategia de smc
Modify existing EA 50 - 70 USD
Hi, The task involves adding functions to an existing EA and correcting an error. The developer must have a thorough understanding of the following: Trailing Take Profit function Calculating a decreasing distance between orders Ability to code a function for Global Profit decrement/increment size in percentage Ability to correct error 10015 Thank you in advance
Looking for experienced programmer to create a trend line breakout and trend line bounce indicator that send alert with arrow on screen without open trades multiple currency pairs time frame M15 H1 H4 D1 W1 MN
Hello programmers, I need a coding assistance to do the following job. Currently the EA opens two different trades one has a comment "Originial" and another has comment "Series" The job is if the Original trade is negative by x pips, open a hedge trade(Hedge1#-OrderTicket of the soruce trade) along with one buystop and a sell stop order and the comment of the trade will be "Recovery#1-+OrderTicket() of the original
Profit EA 50+ USD
//+------------------------------------------------------------------+ //| SimpleEA.mq4 | //| Generated by MetaEditor | //| https://www.mql5.com/en/docs&nbsp ; | //+------------------------------------------------------------------+ #property strict // Input parameters input double LotSize = 0.1; // Lot size input int MovingAveragePeriod = 50; // MA
I have a EA and A Indicator I want to upgrade with some new features I want to add to the Indicator And The EA Also there is a memory error in the system that is showing up in the journal after the ea is ran on multiple charts I will need to get this fixed as well Indicator is 528 lines of code EA is 703 lines of code Dashboard I want to add is 1974 lines of code Indicator Changes I want to change the indicator The
An ea with 4 moving average, and two time frame confluence. Option to add risk to reward and percentage of balance to trade. Message me remaining for the more info
Hi All, I will try to be as precise as possible. We can discuss if you have any questions. I need an indicator to be developed for MT5 for detecting Engulfing Failed Zones. Requirement (in H4/ H1/ M30 Time frames only): Identify Engulfing Buy/ Sell Candle. Identify when the Engulfing Buy is failed, or Engulfing sell is failed. Draw a zone for that area of Engulfing Buy/Sell Fail. Invalidate the zone or delete the
Hi. I want to fix my EA. The concept of lowestBid- There aree 3 levels of price. Price1 at the top, Price 2 in the middle and Price3 at the bottom. When the EA starts it start at Price1. And lowestBid is set to Price1. When the price hits Price 2, lowestBid=Price2. When price hits Price3, lowestBid=Price3. When Price come back up to level2, lowestBid=Price2 ....so on and so forth. lowestBid will keep changing with

Informations sur le projet

Budget
40 - 90 USD
Pour le développeur
36 - 81 USD
Délais
de 3 à 7 jour(s)