I need a high skilled developer for my EA project.

MQL4 Asesores Expertos

Trabajo finalizado

Plazo de ejecución 4 días
Comentario del Ejecutor
Nice work and good customer, thank you.
Comentario del Cliente
He is a very good developer. I appreciate for his efforts very much. He is smart, fast, talented and very professional developer. Do not look for any other developer if he accepts to work with you.

Tarea técnica

Hi,


I want you to add a special stop function to my existing EA. It is working but I need to add the below stated special stop loss function to make it better.


Existing EA opens orders, hedging orders, closes normal orders with profit and closes all of the loosing and winning orders(including hedging orders if the sum of total orders for a currency pair is positive) now.


There will be normal opened orders(Existing EA does this) If this order looses it opens hedging order(Existing order does this too.) If hedging order looses, it opens another hedging order too (Existing order does this too). This continues until the lot size limitation. For example for 1 buy order, EA can open 5 hedging sell orders and 4 hedging buy orders(For other loosing hedging orders) or more. These 10 orders should be treated as a one checking point. For another 1 buy order, EA can open 1 sell order and 2 buy orders too. These 4 orders should be treated as another checking point too. If EA opened a normal order for example no.82, the hedging order description numbers should be 82.1, 82.2, 82.3 etc. if stop loss of 82.1 (Hedging order) happens, then EA should check all sum the orders descriptions starting with the no. 82 and if the total of 82+82.1+82.2+82.3+...= greater than  defined profit number, EA should close all of the orders. At a one point the total of the orders will reach to the defined profit amount because all of the hedging orders are to be with lot size increment.


On below defined special stop loss function, EA should check if the sum of the closing orders is profitable or not.  The rule is to be that the sum of the closing orders should be profitable. 


Let me explain this special stop loss function with 2 examples:


STOP LOSS:5 PİPS (THROUGH THE OPPOSITE DIRECTION MOVEMENT)

HEDGING ORDER OPENING CONDITION:3 PIPS (THROUGH THE OPPOSITE DIRECTION MOVEMENT) (EA opens hedging orders and normal orders but it is not using below stated special stop loss function now)

Hedging lot size increment:0.5 pips (EA does this)

Normal order lot size increment: 0.1 pips (EA does this)


Example-1


1.00100 OPEN SELL ORDER(1)                      (sstop loss: 1.00150)  (Hedging buy order: 1.00130)

1.00130 OPEN BUY HEDGING ORDER(1.1)        (sstop loss: 1.00080)  (Hedging sell order: 1.00100)

1.00150 CLOSE SELL ORDER(1)+ CLOSE HEDGING BUY ORDER(1.1) if buy order(1.1)+sell order(1) sum is greater than predefined profit, Else wait

1.00159 CLOSE SELL ORDER(1)+ CLOSE HEDGING BUY ORDER(1.1) if the sum of these orders reach to predefined profit or more, EA should close the orders, else it should wait.


Predefined profit should be defined from input menu as percentage of the balance. For example if it is 0.01% of a 10.000 USD balance, then the EA should look at to a 1 USD profit.  



Example-2


1.00100 OPEN SELL ORDER(1)                      (sstop loss: 1.00150)  (Hedging buy order: 1.00130)

1.00130 OPEN BUY HEDGING ORDER(1.1)        (sstop loss: 1.00080)  (Hedging sell order: 1.00100)

1.00100 OPEN SELL HEDGING ORDER(1.2)        (sstop loss: 1.00150)  (Hedging buy order: 1.00130)

1.00090 OPEN SELL NORMAL ORDER(2)         (sstop loss: 1.00140)  (Hedging buy order: 1.00120)(This order is not belong to other orders)

1.00080 CLOSE BUY HEDGING ORDER(1.1)+ CLOSE SELL ORDER(1)+CLOSE HEDGING SELL ORDER(1.2)= greater than predefined profit, it should close the orders, else it should wait. (For example it is not a positive value and waits)

1.00100 EA (WILL NOT OPEN ANOTHER HEDGING ORDER)

1.00120 OPEN BUY HEDGING ORDER(2.1)        (sstop loss: 1.00070)  (Hedging sell order: 1.00090)

1.00130  OPEN BUY HEDGING ORDER(1.3)        (sstop loss: 1.00080)  (Hedging sell order: 1.00100)

1.00150 CLOSE BUY HEDGING ORDER(1.2)+ CLOSE SELL ORDER(1)+CLOSE HEDGING SELL ORDER(1.1)+CLOSE BUY HEDGING ORDER(1.3)= greater than predefined profit it should close the orders, else it should wait. (Normal Sell Order(2) and hedge order(2.1) will not be closed at this stage.)


If you're interested in with my project I may send you my EA. But I may only want to work with a developer who is not busy right now (I may wait for a few days if you'll be available soon) and full time good experienced, smart and fast developer.

Han respondido

1
Desarrollador 1
Evaluación
(42)
Proyectos
70
43%
Arbitraje
6
33% / 50%
Caducado
19
27%
Libre
2
Desarrollador 2
Evaluación
(13)
Proyectos
20
30%
Arbitraje
5
20% / 80%
Caducado
5
25%
Libre
3
Desarrollador 3
Evaluación
(5)
Proyectos
6
33%
Arbitraje
2
0% / 50%
Caducado
2
33%
Libre
Ha publicado: 6 ejemplos
Solicitudes similares
Set specific time to run this function(order). The time can be hard-coded or inputted by user. Time format: HH:MM:SS:ss Example: 17:58:48:59 -> This means an order will be triggered at 5 pm 58min 48sec 59 today. Set “Stop loss” and order a Sell stop. “At price” triggered automatically: current(specific time set above 1) Gold price - 2$ Stop loss: current Gold price + 2$ Volume: 0.1 (It can be hard-coded or inputted
Simplebot 30+ USD
#include <Trade/Trade.mqh> CTrade trade; input double LotSize = 0.1; input int FastMA = 10; input int SlowMA = 20; int fastHandle, slowHandle; // Initialize indicators int OnInit() { fastHandle = iMA(_Symbol, PERIOD_CURRENT, FastMA, 0, MODE_SMA, PRICE_CLOSE); slowHandle = iMA(_Symbol, PERIOD_CURRENT, SlowMA, 0, MODE_SMA, PRICE_CLOSE); return(INIT_SUCCEEDED); } void OnTick() { double fastMA[2]; double
I need an Expert Advisor (EA) for MetaTrader (MT4 or MT5) based on the following scalping strategy. Platform: MT4 or MT5 Symbol: EURUSD (should work on other pairs as well) Timeframe: M1 or M5 Indicators: - EMA 9 - EMA 21 - RSI (14) Buy Conditions: - EMA 9 crosses above EMA 21 - RSI > 55 - Spread < 1.5 pips - Only one trade at a time Sell Conditions: - EMA 9 crosses below EMA 21 - RSI < 45 - Spread < 1.5 pips -
In need of an automated bot that strongly detect support and resistance zones where price has a high probability of reacting ,rejecting or reversing. The zones should be built on combibation of of : (a)swing high and swing low.(b)repeated price reaction c)rejection strength (d)break and retest behaviour (e) consolidation origin before implusive move (f) strong displacement candles
I need a mt5 Expert advisor ea to manage intraday trades with strict risk management. The EA must -Handle between 5 to 8 clean trades a day max altogether throughout all 3 sessions. no big news trading times and no overnight trades -Use 1% on forex pairs and upto 2% on XAUUSD risk per trade - Automatically calculate lot size based on stop loss -use fixed RR ratio [1:2] For forex pairs, the stop loss should be
I need a clean, bug-free MT5 Expert Advisor (MQL5) based on this exact mechanical scalping strategy on M5 timeframe for EURUSD. Indicators (built-in): - EMA 9 and EMA 21 on M5 - RSI 14 - ADX 14 (>25 for strong trend) - H1 EMA 21 above/below H1 EMA 9 for trend alignment Entry Rules (ALL must be true): BUY: EMA9 crosses above EMA21 (on closed bar) + RSI > 50 + ADX > 25 + H1 EMA21 > H1 EMA9 SELL: Mirror (cross below
I will like to purchase tradingview strategy with high winning rate, i mean already made, tested and trusted and powerful strategy, i have tried to code my own strategy with lot of freelancers but nothing to me i am just wasting money, i have wasted lot of money already, so i need a high winning rate tradingview strategy, we can discuss price in chat, I will need to see some test result as well
Looking to acquire a good MT5 based EA that works on Gold, forex pairs or BTC. Must be suitable for current market conditions and profitable in backtests. Suitable on 1 Min timeframe to be used on, Must be actively opening many positions throughout the day. Share me the details if this matches something you have or developed. Looking to get this finalised within the weekend
Pakayaku Robot Trading 30 - 200 USD
Revolusi Trading BTCUSD dengan Presisi Fibonacci & Ichimoku Kumo "Memperkenalkan Pakayaku Robot Trading , asisten cerdas yang dirancang khusus untuk menaklukkan pasar emas (XAUUSD) dan Bitcoin (BTCUSD). Menggabungkan algoritma Fibonacci Retracement untuk akurasi titik pantul dan Ichimoku Kumo sebagai filter tren global. Mengapa Memilih Pakayaku? Analisa Multi-Indikator: Menggabungkan Fibonacci, Ichimoku, dan
I’m looking to purchase an existing high-risk Expert Advisor (EA) for MT5. This is NOT a low-risk or conservative system. I am specifically looking for a high-risk, aggressive strategy such as: Martingale Grid trading High-frequency / high-leverage systems Objective: The goal of this EA is simple: Achieve extremely high returns (e.g. 100% in a day) I fully understand and accept the risk of losing the entire capital

Información sobre el proyecto

Presupuesto
10 - 30 USD
Plazo límite de ejecución
de 2 a 3 día(s)