Develop Big Blue EA

MQL4 Experts

Job finished

Execution time 39 days
Feedback from customer
Garik did a great job and went the extra mile to sure everything worked as it should. Definitely recommended!
Feedback from employee
Excellent Customer! The specification is very clear and gives the response soon. I'm happy to work with him

Specification

EA Overview


Big Blue works by placing entries on the high and low points of the previous candle after the opening of a new candle on the daily chart. A time based stop is primarily used to close trades. The time based stop can be set in seconds, minutes or hours. The EA performs according to the parameters enabled within its properties, each described below. All features of the EA must be optimizable within the mt4 strategy tester. Pip # entries will be entered as simple numbers such as 15 or 30, rather than full prices such as 0.00150 or 0.00300.

-------------------------------------------

Enable Active Monitoring:(True/False)

//If enabled, the EA will actively monitor and open/close trades with a market order once the entry, target profit or stop loss point has been hit.
If disabled, the EA will instead place hard buy stops, sell stops, buy limits and sell limit orders into mt4 to enter and exit trades.//

-------------------------------------------

Entry Offset: (+ or - Pips)

//Entry Offset will move entry's in either a positive or negative direction depending on its value. For instance, with an entry offset of 5 pips, a buy entry would be 5 pips above the previous days high, and a sell entry would be 5 pips below the previous days low. The inverse would occur if a negative value such as -5 is entered.//

-------------------------------------------

Use Account %:(1-100)

//The parameter "Use Account %" will determine how much of the account to use when opening a single trade, up to the maximum margin allowed. For example, 100% would open the maximum position possible for the account size and leverage available. 10% would use just 1/10 that amount and so on.//

-------------------------------------------

Target Profit %:(1-100)

//The target profit parameter closes the trade once the account has grown by the percentage input here.//

-------------------------------------------

Use Timed Stop Loss:(True/False)
Close in Profit Trades:(True/False)
Time Units:(Seconds/Minutes/Hours)
Amount of Time:(#)

//If enabled, position will be closed after a set amount of time has passed. If "Close in Profit Trades" is set to false, in profit trades will be ignored and closed only once they hit either their profit target or return to their break even point. "Time Units" will be a selectable drop-down menu that will allow the user to choose between seconds, minutes or hours. "Amount of Time" will set the amount of time before the trade is closed, based off the units selected in the previous dropdown menu.//

-------------------------------------------

Use Fixed Stop Loss:(True-False)
Stop Loss %:(1-100)

//The "Use Fixed Stop Loss" box will allow this parameter to be enabled and disabled. If enabled, the trade will be closed if it draws down the account by the amount entered in "Stop Loss %".//

-------------------------------------------

Reverse All Entries(True/False)
//If enabled, all entries are reversed. For instance, buy stops placed on the previous days high will instead be sell limit orders. Sell stops placed at the previous days low will instead be buy limits. Profit targets and stop losses will be reversed accordingly based on the new direction of the trade.//

-------------------------------------------

Skip Sunday: (True/False)
//If True, the EA will start trading at the close of the Sunday daily candle and avoid placing any trades beforehand.//

-------------------------------------------

Close by EOD Friday:(True/False)
//If True, all pending orders will be closed at 3pm on Friday. Any active trades will remain open until 4:30pm, or when closed by either their timed stop loss, fixed stop loss or profit target.//

-------------------------------------------

Enable Market Hours Filter:(True/False)
Starting Hour:(#) (am/pm)
Ending Hour:(#) (am/pm)

If enabled, the EA will only open trades between the selected range of hours. Time format will be Standard time format. (2:00am, 5:00pm etc.) A separate drop down menu will allow the selection of am or pm to define the starting and ending hour that trades may be opened. Any trades that are open at the end of the range will be ignored and function how they normally would if the market hours filter was not active.

-------------------------------------------

Enable Break Even Range:(True/False)
Break Even if Within: (Pips)
//If enabled, the EA will set the trade to break even if price moves within the set distance from the profit target. For instance, if we have a profit target of 1.15500 and a "Break Even if Within" of 10, the trade will be set to break even once it reaches 1.55400.//

-------------------------------------------

Enable Multiple Entries:(True/False)
//If enabled, multiple entries are placed above or below the initial entry point. Each trade will be sized with the "Use Account %" parameter set in the EA. If not enough margin is available, only the number of trades available to be opened will be entered. For example, if Number of Extra Entries is set to 5, and Use Account % is set to %25, only 4 of the Extra Entries will be opened.//

Number of Extra Entries:(#)
//This number decides how many extra entries will be placed and potentially entered.//

Profit Target per Entry:(%)
//This setting determines the distance each subsequent entry will be from the last. For example, if set at 5%, each subsequent trade entry will be placed at the last trades close plus the distance entered in "Entry Padding", and it's profit target will be set at a distance equal to the amount needed to increase the account by 5%.//

Entry Padding:(# pips)
//Naturally, without any buffer between our entries and exits, our orders may overlap at the same point and not get filled. This number will simply offset each entry from the last by a set amount of pips. For example, an entry of 5 will move subsequent entries 5 pips past the previous trades profit target.//

Scaling Profit Target:(#, must be decimal base. For example, 1.5, 2.5 etc.)
//This number will multiply the profit target for each subsequent entry by a certain amount. For example, let's assume "Profit Target per Entry" generates a 10 pip profit target. With a Scaling Profit Target of 2.0, the first trade will remain at 10 pips, but next trades profit target will be set at 20 pips, the next at 40, and the next at 80 etc. Basically, this is a multiplier to increase the distance between each profit target.//

-------------------------------------------

Enable MA Filter:(True/False)
Fully Above/Below:,(True/False)
Consecutive # of Bars:(#)
MA Period:(#)
MA Type:(Simple/Exponential/Weighted/Smooth)
MA Offset:(+-#)

If enabled, trades are filtered based on which side of the set moving average they are on. Fully Above/Below determines if the full candle including wicks must be completely above or below the moving average to enter a trade. Consecutive # of Bars determines the number of bars in a row that must meet this requirement for a trade to be considered. MA period, type and Offset are the feature sets found in common charting packages.

-------------------------------------------

Enable Bar Color Filter:(True/False)
Minimum Bar Size:(# pips)
Consecutive # of Bars:(#)

//If enabled, orders will only be opened in the direction of the last candles movement. Minimum Bar Size determines the minimum distance in pip movement at the close of the candle for it to be considered either an up or down candle. Consecutive # of Bars indicates the number of successive bars with the same direction of movement that must exist before a trade is considered. For instance, if set to 1, only the last candle will be analyzed. If set to 3, the 3 previous candles will be analyzed and must have each moved in the same direction by at least the set Minimum Bar Size for a trade to be considered.//

-------------------------------------------

Enable New High/Low Filter:(True/False)
Minimum Distance:(# pips)
Consecutive # of Bars:(#)

If enabled, the previous candle(s) must have closed at a new high or low greater than the minimum distance of pips set. For instance, if a Minimum Distance of 10 pips is set, the previous bar must have moved and closed 10 pips further than the previous high or low. Consecutive # of Bars determines how many bars in a row must meet these requirements before a trade is considered.

-------------------------------------------

Enable Close Filter:(True/False)
Bottom Range:(%)
Top Range:(%)
Consecutive # of Bars:(#)

//If enabled, only bars which have closed between the set percentage range of their high or low wicks will be considered for trading. Bottom and Top Range are both percentages meant to determine what range of a candles wick will allow a trade to be considered. For instance, if Bottom Range was set to 50% and Top Range was set to 75%, the candle would have to close a minimum of half it's wick length in either direction, but equal to or less than 75% the length of its wick, also in either direction. Consecutive# of Bars determines how many bars in a row must meet these requirements before a trade is considered//

-------------------------------------------

This EA will need to be coded as efficiently as possible, including the use of detailed comments and proper and clean formatting so that it may be developed or modified further if needed once time has passed. The source code will need to be provided at the end of the project, including an .ex4 file and an .mq4 file.

Responded

1
Developer 1
Rating
(488)
Projects
1014
58%
Arbitration
29
28% / 24%
Overdue
131
13%
Working
2
Developer 2
Rating
(258)
Projects
395
28%
Arbitration
69
19% / 49%
Overdue
120
30%
Free
3
Developer 3
Rating
(49)
Projects
134
27%
Arbitration
62
13% / 53%
Overdue
58
43%
Free
4
Developer 4
Rating
(61)
Projects
120
34%
Arbitration
17
18% / 41%
Overdue
51
43%
Free
5
Developer 5
Rating
(221)
Projects
369
66%
Arbitration
10
50% / 0%
Overdue
46
12%
Free
6
Developer 6
Rating
(34)
Projects
80
34%
Arbitration
13
31% / 54%
Overdue
19
24%
Free
7
Developer 7
Rating
(46)
Projects
73
16%
Arbitration
13
8% / 92%
Overdue
37
51%
Free
8
Developer 8
Rating
(219)
Projects
370
42%
Arbitration
145
17% / 41%
Overdue
124
34%
Free
9
Developer 9
Rating
(1)
Projects
4
25%
Arbitration
1
0% / 100%
Overdue
1
25%
Free
10
Developer 10
Rating
(98)
Projects
129
40%
Arbitration
19
16% / 53%
Overdue
19
15%
Busy
Similar orders
EA Configuration. FIBO ------------------------------------------------------------------- Magic: 123456 Stop: Real or Virtual Order: Pending / CLOSE / price== LOT Description: 0.01 ------------------------------------------------------------------- STOP: -0.25 ------------------------------------------------------------------- ENT_1: 1.00 Lot_1: 0.01 ENT_2: 0.50 Lot_2: 0.01 ENT_3: 1.00 Lot_3: 0.01
Hi I'm looking for a professional programmer to modify my EA the EA send signal alert to telegram and screen shot of the chart patterns my EA is dased to the harmonic pattern but I want to see on the screen shot the pattern of the harmonic pattern and on the chat as well
Hello I need create simple trend first candle session EA. Ea wait for first M5/M15/M30/H1 (all possible timeframes to choose) candle at asian, european and NYC session and open buy/sell stop order above (in long situation) or below (in short situation) x points from highest/lowest point of the first candle. + trailing stop loss stop loss take profit breakeven magic key
Hello Guys ! Looking for a developer to create a EA for my Buy and Sell No repaint indicator. I only have the EX4 indicator file and I want the EA to take trades according to the Buy and sells signals generated by the Indicator. Here are some inputs I want for the EA: - Trailing stop - TP and SL ( in pips ) - Entries, TP and SL ( based on opposite signals arrow ) - Daily target ( in Dollars $ or % ) - Trading hours -
I need a robot that copies the orders sent in the telegram group to MT4 or MT5 so that I can configure the parameters. I would like it to have functions so I can enter and exit negotiations according to my configuration parameters
i need to delegate this job. XAUUSD H4 MT4 i have an ea with source code with smc, fvg, orderblocks and fibonacci, i need to fix somethings and add some features for live markets, any new ideas are accepted, i need also a 4 years backtest report (of metatrader 4). if you have good price and feedbacks and you want work for me also for new jobs apply for this job it's not urgent i need only a good price
Hello, I hope you are well. I have an alert/s that I would like to provide buy and sell orders. The alerts are named *ENTRY* and *EXIT*, so the EA will know what to do. I would like the EA to have the following parameters: 1. Select the number of trades per currency pair 2. Time to trade: Time to start trading to time to end trading - I would like 4 different times to be able to be entered 3. Option to choose which
Order Manager 30 - 60 USD
I am looking for a programmer to develop an Expert Advisor (EA) for order management, which will be used alongside simpler EAs. This EA should include advanced functionalities for efficient and personalized management. **Key Features:** 1. **Comprehensive Information Panel:** - **Order Visualization:** Display all open orders by currency pair, including short and long positions. - **Font Resizing Option:** Allow
Hello! I'm looking for an Expert Advisor that will identify Fair Value Gaps above or below a Simple Moving Average line and take sells when price is above the line and buys when price is below the line. It will take only one trade at a time. It will not take a trade when price is within a number of pips (a parameter) of the SMA. I would like a copy of the source code. When a trade is entered, a text message will be
Hi All I'm searching for a Boom and Crash EA that consistently generates profit. The EA must maintain a drawdown below 40% at all times from 2020 to 2024, ensuring this level each month. I'd like to test it in demo mode for 2-3 days before completing the full payment. : note - you need to work on logic

Project information

Budget
30 - 60 USD
For the developer
27 - 54 USD
Deadline
from 3 to 7 day(s)