仕事が完了した
実行時間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%
仲裁
3
0%
/
67%
期限切れ
4
33%
暇
3
評価
プロジェクト
521
47%
仲裁
29
10%
/
45%
期限切れ
139
27%
仕事中
4
評価
プロジェクト
80
10%
仲裁
38
8%
/
58%
期限切れ
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%
暇
類似した注文
Mayberry bot
30+ USD
I am looking for an experienced MQL5 developer to build a clean, non-martingale, non-grid Expert Advisor for MetaTrader 5. The EA will trade XAUUSD (Gold) on the M15 timeframe using a trend + pullback strategy with strict risk management
I want a copy bot that copy’s for all my accounts I want 1 master 5 slave accounts and it Copy’s the accounts from the master based of the lot size of the account So % wise £1000 account 0.1 £100 account 0.01 trades And as the lot size goes up it amplifies it to the other account and vice versa so the % is always the same based of the Trade of the master and vice versa if the slave account is higher than the master
NinjaTrader 8 custom indicator
150+ USD
hello great developer i want a NinjaTrader 8 custom indicator (not a full bot) • It implements the Jackson–Dalton Trading System • Includes Z1/Z2/Z3 zones, VWAP + deviation, and session volume profile (POC/VAH/VAL) • Has day-type classification and configurable alerts • Primary instruments are BTC/USDT and ETH/USDT • Full source code and documentation are required • Semi-automation and futures support are optional /
1. Goal I want a MetaTrader 5 Expert Advisor that trades a simple Supertrend trend‑following idea, but with professional‑grade risk management and filters. It should be robust enough for real money on instruments like XAUUSD and GBP pairs, using small, consistent risk per trade rather than martingale or grid. 2. Strategy Logic Indicators (I will supply the .mq5 files if needed): Supertrend (ATR‑based), with
EA Name: Stochastic EA (MT5)
30 - 150 USD
EA Name: Stochastic EA (MT5) Timeframe • Works only on M1, M5, M15, M30 ⸻ Indicators & Settings 1. Stochastic Oscillator • %K Period: 14 (editable) • %D Period: 3 (editable) • Slowing: 3 (editable) • Buy Level: 10 (editable via input Buy Level) • Sell Level: 90 (editable via input Sell Level) 2. Simple Moving Average (SMA) • Period: 100 (editable via input SMA Period) • Acts as a hard filter for trades: • Buy
Hi developers, I need someone to help me create a simple EA with my indicators and trading plan... I will give you all parameters and you help me create... 2 moving averages, one candle pattern
Please a need a very good expert for this jou I want to create 2 robot one a trade manager Perfect — here’s a clean, professional order description you can post directly to an EA freelancer (MQL5). I’ve written it so it’s clear, serious, and attractive to skilled developers 👌 MQL5 Trade Manager EA – Development Request I am looking for an experienced MQL5 developer to build a robust Trade Manager Expert Advisor for
I am looking for a bot that has been created and tested and confirmed profitable in a live market for Gold. The bot must be profitable and have a low drawdown. The developer will send a demo which I can test for myself. I am looking for more of a partnership with an experienced developer
The view EA
50 - 60 USD
A multi currency fundamentals + orderflow + price action toolkit. Plot real-time fundamental news outbreaks sourced from Twitter feeds or financial news websites (e.g., Financial Juice). Automatically plot news events as vertical lines directly on the chart for instant visual context. Display economic release time as a live clock on the chart, synchronized with the event. Price Action & Orderflow Analysis Accurate
Henryy999
30 - 3000 USD
The Ai robot must help me with forex and I don't have money soon can the Ai robot give me some money and I will pay it back if the Ai robot does a good job making me rich
プロジェクト情報
予算
50+ USD
締め切り
最低 1 最高 3 日