Lavoro terminato
Tempo di esecuzione 2 giorni

Feedback del cliente
great work. flexible and masters the logical implementation.

Feedback del dipendente
It was a pleasure to work with you! Hope for further cooperation
Specifiche
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];
}
}
Con risposta
1
Valutazioni
Progetti
125
23%
Arbitraggio
12
0%
/
75%
In ritardo
22
18%
Gratuito
2
Valutazioni
Progetti
12
8%
Arbitraggio
2
0%
/
50%
In ritardo
4
33%
Gratuito
3
Valutazioni
Progetti
521
47%
Arbitraggio
29
10%
/
45%
In ritardo
139
27%
In elaborazione
4
Valutazioni
Progetti
80
10%
Arbitraggio
35
9%
/
54%
In ritardo
6
8%
Gratuito
5
Valutazioni
Progetti
1
0%
Arbitraggio
0
In ritardo
0
Gratuito
6
Valutazioni
Progetti
33
55%
Arbitraggio
5
80%
/
20%
In ritardo
3
9%
Gratuito
7
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
8
Valutazioni
Progetti
102
23%
Arbitraggio
12
25%
/
17%
In ritardo
13
13%
Gratuito
Ordini simili
is a BUY and sell Indicator based on bottoms, tops breakouts, and support and resistance and thers a few other things that i would like to add to the EA
Hello developers, I am looking for a developer who can create or provide an effective trading robot for MetaTrader 5 (MT5). The robot must be reliable and functional, and it can be either a ready-made project or developed from scratch. If interested, please contact me with price and delivery time. Thank you
I want the ea to be made on rsi and ema crossover, rsi below 20 buy and ema9,21 bullish crossover vice versa and for sell rsi above 80 and ema 9 and ema 21 bearish crossover
High lots volume EA
30 - 600 USD
Hello guys, I need an EA on mql5 working only on eurusd and/or only with majors. Broker on which this EA will work applies a 4pips spread on eurusd. This should run on a small account (1000usd) and the only goal this EA must achieve is to reach a volume of at least 50/60 lots in one month (the higher the better). No need to preserve the capital/equity, the account could also go to zero as the worst scenario, but the
📋 V75 SMA Crossover EA — Summary of Rules 1. Chart Timeframe for Trading Trades are taken on the M15 timeframe. 2. Indicators Used Simple Moving Averages (SMAs): SMA 5 (fast) SMA 15 (medium) SMA 50 (slow) SMA 150 (long-term trend) 3. Entry Conditions Buy Signal: SMA 5 crosses above SMA 15, AND Current price is above both SMA 50 and SMA 150. Sell Signal: SMA 5 crosses below SMA 15, AND Current price is below both SMA
Back End Developer Required with Prop firm experience . This is For an ongoing project . ATR Threshold Breakout . Certification . The expert is designed to gain 1-2 % of the equity every single day . ( for prop firms ) . Session Filter , Economic Calendar Filter . The Panel needs Minor Adjustments to show the parameters correctly ( no extra parameters required ) . Live Chart Adjustments accordingly . Developer needs
We're seeking a highly skilled QuantConnect developer (Python) to build a sophisticated intraday trading algorithm for use in prop firm environments (e.g., MyFundedFX, FXIFY). The strategy involves multi-layered technical logic and requires integration of strict risk rules to meet live challenge requirements
Hey MQL5 Community, I am seeking an experienced algorithmic trading expert coder, skilled programmer who is able to take top clear look at my trading metrics, analyze exactly, craft tailored solutions based on my trading ideas, ensuring implementation according to the target to achieve the exact goal and make all expectation come to reality, feel free to reach out just if you are well skilled and capable of creating
I'm looking for an experienced and reliable QuantConnect developer (Python preferred) to help build and support a custom intraday trading algorithm with layered technical logic, clean structure, and prop firm risk management constraints. This is a high-level strategy requiring precision, performance, and smart modularity
I want a high already made profitable ea
50 - 200 USD
I want an EA that is already made. It can be of any trading instrument or can trade different trading pairs. It needs to show risk reward profitability with little drawdown. Let me know. Thanks
Informazioni sul progetto
Budget
50+ USD
IVA (20%):
10
USD
Totale:
60
USD
Per lo sviluppatore
45
USD
Scadenze
da 1 a 3 giorno(i)