仕事が完了した
実行時間2 日

依頼者からのフィードバック
great work. flexible and masters the logical implementation.

開発者からのフィードバック
It was a pleasure to work with you! Hope for further cooperation
指定
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];
}
}
応答済み
1
評価
プロジェクト
125
23%
仲裁
12
0%
/
75%
期限切れ
22
18%
暇
2
評価
プロジェクト
12
8%
仲裁
2
0%
/
50%
期限切れ
4
33%
暇
3
評価
プロジェクト
521
47%
仲裁
29
10%
/
45%
期限切れ
139
27%
仕事中
4
評価
プロジェクト
80
10%
仲裁
35
9%
/
54%
期限切れ
6
8%
暇
5
評価
プロジェクト
1
0%
仲裁
0
期限切れ
0
暇
6
評価
プロジェクト
33
55%
仲裁
5
80%
/
20%
期限切れ
3
9%
暇
7
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
8
評価
プロジェクト
102
23%
仲裁
12
25%
/
17%
期限切れ
13
13%
暇
類似した注文
I need a highly disciplined, low-risk EA for MT4/MT5 that trades only when 100% strategy conditions are met. It must include multi-timeframe trend logic, support/resistance rejection, BOS/CHoCH detection from real swing levels, and a breakout strategy with trailing SL. EA should scan all major pairs (from one chart), trade only during 07:00–16:00 GMT, and skip trades 2 hours before major news. Max 1 trade per pair
Cancel brack out
30+ USD
a fully automatic Expert Advisor for Scalping Trading. This Expert Advisor The basic strategy starts with Market order in counter trend, but you can change it, in others strategies trend
EA modification
30 - 40 USD
can you help me with fixing errors on my expert advisor. someone made some corrections to the ea but this one (attached below) is not picking the exact 1st pattern and it keeps looking for new ones (not following the rules) but the entry/sl placement is working fine the 38.2 fib has been added the risk calculator is a bit off as well on this one
I am Looking for MT4 or MT5 Sclaper Robot for XAUUSD (GOLD) OR FOREX Pair without Slippage issue and Trade Running minimum 100 Secound close with profit or minor Lost With rate Should be 90 %
I need someone to help me build a private MetaTrader 4 server for training and demos. The setup should look real, allow account management, and simulate trades. Must be experienced with MT4 server simulators and VPS setup
Hello developers, i need a server in training mt4, i want an expert and a long time developer who can work with me with honesty and truth, inbox me only if you can handle the project and understand it
Hi, I’m looking for an experienced developer who can help me set up a private MetaTrader 4 server for educational and training purposes. I need a setup that looks and functions like a real server, with admin access , the ability to manage accounts, simulate trades, and run realistic market conditions for content creation and learning. If you have experience with MT4 server simulators , Windows VPS , and can assist
need a expert advisor for mt5 and need a pine script strategy This indicator is as an evolution of the classic Donchian channel. Pivots are identified using a zigzag structure and graphical markers, with the pivots derived entirely from the behaviour of the channel. A pivot is triggered when the channel flattens, forming a connector point for the next zigzag leg. To avoid weak or insignificant pivots, a depth
need a expert advisor for mt5 and need a pine script strategy This indicator is as an evolution of the classic Donchian channel. Pivots are identified using a zigzag structure and graphical markers, with the pivots derived entirely from the behaviour of the channel. A pivot is triggered when the channel flattens, forming a connector point for the next zigzag leg. To avoid weak or insignificant pivots, a depth
Gold scalper Ea
50+ USD
Hello is any one having Gold Ea please let me know, which should have good scalping result. and should work on real account. if any one have such please connect me
プロジェクト情報
予算
50+ USD
VAT(付加価値税) (20%):
10
USD
合計:
60
USD
開発者用
45
USD
締め切り
最低 1 最高 3 日