Tâche terminée
Temps d'exécution 2 jours
Commentaires du client
great work. flexible and masters the logical implementation.
Commentaires de l'employé
It was a pleasure to work with you! Hope for further cooperation
Spécifications
Requirements
We use the below code (at the end) for generating Android notifications. We want to convert this Notification EA to a Trading EA ie instead of sending Android notifications we want the EA to do automated trading. We have the below requirements
1. The EA should be coded using MQL4
2. The EA should be timeframe independent and should run on any timeframe (1 min, 5min 15min etc)
3. EA should run once per candle at the candle start
4. EA should be able to run on Metatrader4 terminal ie compatible with Metatrader 4
5. EA/Script Should be able to be migrated to virtual server and run there
6. The EA should use default MQL4 stochastic indicator to initiate trades (iStochastic)
7. The below parameters should be defined by the user and they can change the value of any of these parameters at any time
• K period, D period and slowing period for the default MT4 stochastic indicator (iStochastic)
• The starttime: when the EA should start trading everyday.
• The endtime: when the EA should liquidate any open position
• The lot size: the size of the order to be placed by the EA everytime. This should range from 0.01 to any possible higher number.
• The take profit pips: number of pips the EA should keep as a target for any trade opened by it. For buy orders it should be Orderprice+ take profit pips and for sell orders it will be Orderprice- take profit. If EUROUSD is at 1.08551 the on buy the take profit of 10 points will be 1.08651 and for sell order it will 1.8451
Conditions for trade
Entering the trade:
1. When the K line crosses over the D line the EA should place a buy order at market price for the specified lot size.
2. When the K line crosses under the D line the EA should place a sell order at market price for the specified lot size.
3. At any time, by the above condition there will be only one order possible
Exiting the trade:
The long or short trades should be closed for below conditions
1. For buy order: The K line crosses under the D line ( at market price )or the take profit point whichever comes earlier
2. For sell order: The K line crosses over the D line ( at market price )or the take profit point whichever comes earlier
3. At the endtime the EA should close all trades and wait for the starttime to start trading again.
Payment Terms; to consider the product to be delivered successfully for payment I will test the script on the below cases
1. Customise the EA settings and Run the script on MT4 windows terminal on 1, 5, 15,30, min, 1 hour charts
2. Check if the migration to my virtual server of the charts along with the EA/Indicator works fine.
3. Check if the scrip is running fine on the Virtual server and perform the same trades
I will test the script on EUROUSD,
Code used for reference (the developer need not use the same code if they have better way to implement the above functions.
#property version "1.00"
#property strict
input int MagicNumber = 000; //Magic Number
input int k_period = 14; //Stochastic K Period
input int d_period = 3; //Stochastic D Period
input int slowing = 3; //Stochastic Slowing
input ENUM_MA_METHOD ma_method = MODE_EMA; //Stochastic Moving Average Type
input int price_field = PRICE_CLOSE; //Price field parameter. 0=Low/High or 1=Close/Close
input bool SendNotification = TRUE;
double sto_main_curr,sto_sign_curr,sto_main_prev1,sto_sign_prev1,sto_main_prev2,sto_sign_prev2;
datetime TimeCurrent;
datetime LastActiontime;
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
void OnTick()
{
if(LastActiontime!=Time[0]){
sto_main_curr = iStochastic (Symbol() ,PERIOD_CURRENT ,k_period ,d_period ,slowing ,ma_method ,price_field ,MODE_MAIN ,0);
sto_sign_curr = iStochastic (Symbol() ,PERIOD_CURRENT ,k_period ,d_period ,slowing ,ma_method ,price_field ,MODE_SIGNAL ,0);
sto_main_prev1 = iStochastic (Symbol() ,PERIOD_CURRENT ,k_period ,d_period ,slowing ,ma_method ,price_field ,MODE_MAIN ,1);
sto_sign_prev1 = iStochastic (Symbol() ,PERIOD_CURRENT ,k_period ,d_period ,slowing ,ma_method ,price_field ,MODE_SIGNAL ,1);
sto_main_prev2 = iStochastic (Symbol() ,PERIOD_CURRENT ,k_period ,d_period ,slowing ,ma_method ,price_field ,MODE_MAIN ,2);
sto_sign_prev2 = iStochastic (Symbol() ,PERIOD_CURRENT ,k_period ,d_period ,slowing ,ma_method ,price_field ,MODE_SIGNAL ,2);
{if ((sto_sign_prev2<sto_main_prev2) && (sto_sign_curr>sto_main_curr) && ((TimeHour(TimeCurrent())>1) && ((TimeHour(TimeCurrent())<21))))
SendNotification("EURUSD 5MIN BEARISH");
}
{if ((sto_sign_prev2>sto_main_prev2) && (sto_sign_curr<sto_main_curr) && ((TimeHour(TimeCurrent())>1) && ((TimeHour(TimeCurrent())<21))))
SendNotification("EURUSD 5MIN BULLISH");
}
LastActiontime=Time[0];
}
}
Répondu
1
Évaluation
Projets
125
23%
Arbitrage
12
0%
/
75%
En retard
22
18%
Gratuit
2
Évaluation
Projets
12
8%
Arbitrage
3
0%
/
67%
En retard
4
33%
Gratuit
3
Évaluation
Projets
521
47%
Arbitrage
29
10%
/
45%
En retard
139
27%
Travail
4
Évaluation
Projets
80
10%
Arbitrage
38
8%
/
58%
En retard
6
8%
Gratuit
5
Évaluation
Projets
1
0%
Arbitrage
0
En retard
0
Gratuit
6
Évaluation
Projets
33
55%
Arbitrage
5
80%
/
20%
En retard
3
9%
Gratuit
7
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
8
Évaluation
Projets
102
23%
Arbitrage
12
25%
/
17%
En retard
13
13%
Gratuit
Commandes similaires
HAJOSKI
30+ USD
BUY ALERT Supertrend turns Bullish Last time xSupertrend was bearish, there is a retracement on BBstops Last time XSupertrend was bearish, Price was < or = to MA1 Instrument is in trend (STEP MA and STEP MA 2 are both Bullish) SELL ALERT Supertrend turns Bearish Last time xSupertrend was bullish, there is a retracement on BBstops Last time XSupertrend was bullish, Price was < or = to MA1 STEP MA1 and STEP MA 2 are
محتاج بوت تداول متعدد الاستيراتيجيات
30 - 100 USD
ده بوت مشابهه نفس ما احتاج بيكون عباره عن اقوي الاستيراتيجيات مثل smc , ict trend price action mcad rsi وهناك اكثر تستطيع ان تحدد استيراتيجية واحده او اكثر وعند مثلا تطابق 60% من الشروط يفتح الصفقه ويكون طبعا فيه ستوب لوز وستوب متحرك لتكبير الارباح
I want a order block indicator mt5 which will give signals alerts.. Bearish order block blue bullish red .. with highs and lows reversal........ it should give arrows or dots for entry or something... and exit level... I show what I need in the picture
Make it work -Expert advisor
30+ USD
//+------------------------------------------------------------------+ //| EMA + Resistance Break & First Retest EA - ATR SL/TP - Risk 3% | //| Fully working MT4 EA | //+------------------------------------------------------------------+ #property strict //---- Inputs input double RiskPercent = 3.0; input int ATR_Period = 14; input double SL_ATR_Multiplier = 1.5; input double TP_ATR_Multiplier
SMC Trading Bot
50 - 100 USD
📌 Looking for MQL5 Developer – Institutional SMC EA Specification Hello everyone, I am looking for a highly experienced MQL5 developer to build a fully automated Expert Advisor (EA) based strictly on Smart Money Concepts (SMC) , designed to operate and pass prop firm accounts . 🔍 Core Strategy Requirements (SMC Only) The EA must be based on institutional Smart Money Concepts , including: ✅ Market Structure (BOS
Create simple EA
30 - 60 USD
Start BUY:- when i click start BUY button new panel should open which should contain bellow points:- Trigger Price Time frame Cross/Close RR ration Trailing Stop ratio Maximum Trade count Risk (percentage or cash) (Option to Increase risk when SL hit) Remove Trigger (True/False ) I will explain above point one by one here bellow •Trigger price :- here we enter price at which when market cross or
MT5 EA Developement
60+ USD
I’m a trader looking to develop a non-repainting indicator intended for integration with an EA. I identified a comparable indicator on the MQL5 Market, but it’s unclear whether its logic can be accessed or automated for algorithmic execution
Tradingview indicator
30+ USD
I want to check if this indicator is repainting or not Whick mean the results of back testing is legit or not if anyone can help me to review it kindly to well to contact me i will be happy to work and go on long term work with anyone thanks
Bot sympaFX
30+ USD
Stratégie : "Institutional Flow Scalper" La stratégie repose sur la confluence de la tendance structurelle et de la valeur moyenne pondérée . Actifs cibles : EURUSD, GBPUSD (Spread faible, forte liquidité). Sessions : Londres (09h00 - 12h00) et New York (14h30 - 17h30 GMT+1). Indicateurs : EMA 200 : Filtre de tendance long terme (M5). VWAP : Ancre du prix institutionnel. On achète sous le VWAP en tendance haussière
PrimeFlowEA — v1 Specification Objective: PrimeFlowEA v1 is designed to enforce disciplined, rule-based execution within a single daily trading session. The goal of v1 is correct behavior and execution discipline , not optimization or performance tuning. 1. Market & Time Platform: MetaTrader 5 (MQL5) Symbol(s): User-selectable (single symbol per chart) Execution timeframe: Configurable (default: M5 / M15)
Informations sur le projet
Budget
50+ USD
Délais
de 1 à 3 jour(s)