Need EA Programmer For Long Term Project - SMART AI BOT

MQL4 エキスパート

仕事が完了した

実行時間4 日
依頼者からのフィードバック
Great working with Zhong as he took the time to help ensure I understand the code and always willing to help! Great work and look forward to other projects.
開発者からのフィードバック
Very patient and easy to communicate with customers, hope to cooperate again!

指定

Hi There,

I am in need of a programmer that will be able to create an EA for me based on multiple technical indicators and/or EMA requirements. This maybe a long term engagement as I want to build out this EA to to handle multiple situation and eventually AI down the road. Below are my first set of requirements to make the first EA base don Bollinger Band. Ideally this needs to work for MT4 right now and can easily be ported to MT5 in the future when needed.

Bollinger Band EA

SET UP - EA/BOT should be able to work on any time frame from M5 to W1, works with any currency, stock, futures, metal, oil etc...

EA must have its own magicNumber or as defined by the user.

1. EA will need to be able to take in the following input from the user for this martingale trade set up:

   a. MAXORDER trade (how many orders in a series can the EA opens)

   b. Starting lot (i.e. .01 or say .05 whatever is designated by the user)

   c. pip Distance, the distance set between each buy/sell iterations in martingale (i.e. first buy price is 1.34000, while distance set to 500 pip, thus next buy will be 1.34500 and so forth).

   d. lotMultiplier - how much should the next buy/sell lot in the series grow (if starter lot is .01 x 1.2 multiplier lot = .012 lot thus should be .01 lot as next order, but if it's .01 lot x 1.5 multiplier = .015, then next lot is .02 as the order lot rounding up if it's 5 or higher, round down otherwise), each new buy/sell will continue to use the previous buy/sell lot x the lot multiplier for next order

   e. TP take profit pip - set by users to take profit after 10 or 100pip any pip designation by the user.

   f. Stop Loss (S/L) pip - set by users to have a stop loss for certain pip if trade doesn't work out. a ZERO means no stop loss.

   g. Bollinger Band offset (pip) how many pips higher than top/lower than the bottom should the trade be executed explained in step 4.a and 4.b below

   h. Number of months to find highest price/lowest price if possible

   i. Percent % within the last 3 months highest price/lowest price; explained in step 3 below.

NEW OPEN TRADE CONDITION

1. EA will needs to pull the last N months history and find highest price and the lowest price for the ticker and save the two prices (pHI, pLo).

2. If the current price is within 5-10% (designated by the user parameter above) of the highest price, then only execute SELL ONLY, opposite is true if price is 5-10% at the lowest, then BUY only.

3. If current price is not within with the % high/low from step #2 above, then EA can execute both buy/sell per condition below.

4.a. EA will execute a SELL when the current price goes above the TOP Bollinger Band by X offset pip designated by the user (i.e. top of BB + 10pip), thus price has to be above top BB by 10pip then sell.

4.b. The opposite to this is when EA hits below the BBand by X offset pip (i.e. bottom of BB - 10 pip which if BBand bottom is 1.34000 - 10pip more, thus BUY execute at 1.39090)

5. As trades are open from either step 4.a or 4.b, EA will continue to martingale in on the next buy/sell based on the DISTANCE set & the lot scale multiplier to buy/sell for the next lot size rounding up per decimal

6. Continue to do step 5 up to the MAXOPEN TRADE set by the user if the CLOSE trade condition have not been met.

7. Repeat the above process from 1-6 each time to open any new trades (buy/sell)


CLOSE TRADE CONDITION

7. EA will need to calculate the overall average price in the martingale buy/sell series above and then add in the TP condition set by the users 

7.a. For the BUY series it will be the average price + the TP set by the users  (i.e. average price for BUY is 1.34000, TP set at 100, then the close trade occurred at 1.34100)

7.b. For the SELL series it will be the average price - the TP set (i.e. average price for sell is 1.34000, TP set at 100, then the close trade occurred at 1.33900)

7.c  Close due to Stop Lost set by user.


Throughout the CODE of the EA, comments need to be documented so that I can understand the logic/coding behind to ensure that the above conditions are met. 

ALL SOURCE CODE will be my property and provided at the end of project.

EA will be backtested to ensure it function as designed and be optimized further if needed.

EA will be my property which I can choose to sell it later if I wish to.


応答済み

1
開発者 1
評価
(174)
プロジェクト
200
12%
仲裁
39
38% / 33%
期限切れ
5
3%
パブリッシュした人: 2 codes
2
開発者 2
評価
(24)
プロジェクト
28
32%
仲裁
1
0% / 0%
期限切れ
0
パブリッシュした人: 1 code
3
開発者 3
評価
(33)
プロジェクト
49
12%
仲裁
16
0% / 88%
期限切れ
10
20%
4
開発者 4
評価
(15)
プロジェクト
20
15%
仲裁
3
0% / 67%
期限切れ
2
10%
5
開発者 5
評価
(68)
プロジェクト
111
26%
仲裁
17
6% / 71%
期限切れ
15
14%
パブリッシュした人: 9 codes
6
開発者 6
評価
(206)
プロジェクト
333
35%
仲裁
66
12% / 58%
期限切れ
87
26%
7
開発者 7
評価
(7)
プロジェクト
8
63%
仲裁
1
0% / 100%
期限切れ
1
13%
8
開発者 8
評価
(4)
プロジェクト
5
0%
仲裁
5
0% / 80%
期限切れ
2
40%
類似した注文
VEE STRATEGY ROBOT 30 - 200 USD
//+------------------------------------------------------------------+ //| M5 Trend Pullback EA | //| Exness / MT5 | //| Forex + XAUUSD | //| Risk: 0.5% per trade | //+------------------------------------------------------------------+ #property strict #property version "1.00" #property description "M5 EMA50/EMA200 + RSI + ATR Trend Pullback EA" #include <Trade/Trade.mqh> CTrade trade;
Purpose Develop a transparent and conservative Expert Advisor for MetaTrader 5. Profit is not guaranteed; acceptance is based on correct implementation, risk controls and reproducible testing. 1. Platform and instruments - Native MQL5 Expert Advisor for MetaTrader 5. - Symbols: EURUSD and USDJPY. - Working timeframe: H1. Higher-timeframe trend filter: H4. - Must support standard broker symbol suffixes/prefixes and
Please may someone assist me with the indicator attached, it has a SERIOUS BUG issue in the sense that when I load it, and activate the template (attached as well) MT4 ALWAYS freezes and then eventually disconnects automatically, ALL THE TIME. It even gets worse to an extent that after disconnecting a number of times mt4 ends up not loading anymore, UNTIL I remove the indicator. Please I WILL NEED A DEMO (FOR A DAY)
I’m looking for an experienced NinjaTrader 8 developer to build an automated strategy using the Imbalance Profile Lidar indicator by ninZa.co on MNQ DEC26 with a 3000-volume chart . Requirements: Enter Long when a blue absorption dot appears below price with an absorption value. Enter Short when a pink absorption dot appears above price with an absorption value. Stop loss: 15 ticks behind the signal dot price . Take
Ola, Tenho um Bot mas parou de funcionar, preciso de programador que desenvolva o mesmo configurações. Envio o antigo bot para pegar as configurações e realizar outro modelo. Hello, I have a bot that has stopped working, and I need a programmer to develop one with the same settings. I can send the old bot so you can extract the settings and build a new version
I have a simple EA that trades based on pending orders I need it to be converted to cTrader am looking for expert developer that have experience in ctrader that can convert metatrader 5 robot to ctrader
SPECIAL BAR EA 30+ USD
Hello Dear Coders , Here is a strategy with calculations on a specific bar ,sould be implemented carefully. Calculation on the bar needs math at some degree . trade numbers and trade results should be written right below the specific bar . Vague points should be cleared before starting coding. below is the %80 of full strategy and its explanations , the full will be given after selecting developer. POSITIONS ON A
Hello, I'm looking to develop a Forex Expert Advisor (EA) for MetaTrader 5 (MT5). I have an existing strategy and I'm looking for a complete solution developed from scratch. The main requirements are: Strategy research and development profitable trading objectives. Automated Forex trading with clearly defined entry and exit rules. Risk management, including stop-loss, take-profit, and position sizing. Backtesting and
Hello Developers, I am looking for an experienced MQL5 developer to build a custom Expert Advisor (EA) for MetaTrader 5 (MT5) based on ICT (Inner Circle Trader) concepts and Support/Resistance price action. Key Features & Strategy Requirements: 1. Market Structure & Price Action: - Identify Support and Resistance zones automatically. - Detect Break of Structure (BOS) and Change of Character (CHoCH). - Identify
A video of the front end project is attached or uploaded in the link for view, the project is to build web app trader for login of mt4 / mt5 login and trades, the Web app is still under development your ideas matter in this project feel free to share ideal regards this project if you are good in Visual studio 2022 VS code and have handled C++ projects before on multiple situation this project might be yours. UI/UX

プロジェクト情報

予算
35+ USD