Develop Big Blue EA

MQL4 Experten

Auftrag beendet

Ausführungszeit 39 Tage
Bewertung des Kunden
Garik did a great job and went the extra mile to sure everything worked as it should. Definitely recommended!
Bewertung des Entwicklers
Excellent Customer! The specification is very clear and gives the response soon. I'm happy to work with him

Spezifikation

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.

Bewerbungen

1
Entwickler 1
Bewertung
(490)
Projekte
1016
58%
Schlichtung
29
28% / 24%
Frist nicht eingehalten
132
13%
Arbeitet
2
Entwickler 2
Bewertung
(258)
Projekte
395
28%
Schlichtung
69
19% / 49%
Frist nicht eingehalten
120
30%
Frei
3
Entwickler 3
Bewertung
(49)
Projekte
134
27%
Schlichtung
62
13% / 53%
Frist nicht eingehalten
58
43%
Frei
4
Entwickler 4
Bewertung
(61)
Projekte
120
34%
Schlichtung
17
18% / 41%
Frist nicht eingehalten
51
43%
Frei
5
Entwickler 5
Bewertung
(221)
Projekte
369
66%
Schlichtung
10
50% / 0%
Frist nicht eingehalten
46
12%
Frei
6
Entwickler 6
Bewertung
(34)
Projekte
80
34%
Schlichtung
13
31% / 54%
Frist nicht eingehalten
19
24%
Frei
7
Entwickler 7
Bewertung
(46)
Projekte
73
16%
Schlichtung
13
8% / 92%
Frist nicht eingehalten
37
51%
Frei
8
Entwickler 8
Bewertung
(219)
Projekte
370
42%
Schlichtung
145
17% / 41%
Frist nicht eingehalten
124
34%
Frei
9
Entwickler 9
Bewertung
(1)
Projekte
4
25%
Schlichtung
1
0% / 100%
Frist nicht eingehalten
1
25%
Frei
10
Entwickler 10
Bewertung
(108)
Projekte
138
43%
Schlichtung
19
16% / 53%
Frist nicht eingehalten
20
14%
Beschäftigt
Ähnliche Aufträge
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: function (A) Add Transform combine the 4 Expert Advisors into just 1 Expert Advisor, maintaining the individuality of each one Leave in extern (false) or (true)
Description: I am seeking an experienced MQL5 developer to create a custom Expert Advisor (EA) for MetaTrader 5 based on a specific trend-following strategy. The strategy includes precise risk management, advanced trade management features, and additional risk management tools. The EA should be adaptable to any timeframe on which it is attached. Below are the detailed requirements and parameters for the EA: Strategy
I need an EA trading frequently (HFT or something like), and it sould have some features below: 1、Have a clear trading logic 2、Have a good backtest result 3、Have a demonstrated benefitable result in a live account trading 4、Can avoid the news time period or not sensitive to news
Tenho um EA mql4 que está com funcionalidades funcionando e outras com funcionalidades sem funcionar. Tenho um vídeo do EA funcionando como deve funcionar perfeitamente. O meu não consegue seguir o mesmo programa pois quando coloca os pontos de parada e retirada são bem diferentes. Não tenho pressa para tempo, só queria que conseguisse renovar o EA. O arquivo do grafico anexo é como ele se encontra agora. O certo é
New york session based strategy 9:30 open Price takes out buy side or sell side liquidity Usually using 15min high and lows 5m entry Price takes out that high/low and price must close strongly back into the zone Is price is above price we have a sell bias vis versa for buys Sl is at the high or low with option for “offset” for cushion Tp is usually the opposite High or low. Would like the option for set pips-points &
Hello, I am looking for a skilled developer to create an Expert Advisor (EA) for MT4. The EA should close an open trade automatically when a Golden or Death Cross occurs in the Alligator Indicator. Please let me know if you have experience with similar projects and how we can discuss the details further
Hello there! I have a ATAS bot that would be discussed properly with you once you bid to this project, But majorly what i need is either: An update to my bot that allows it to watch one chart and trade on another within ATAS. Or an add on of some kind that allows it to watch one ATAS chart and then communicate with a bot that can execute trades in MT4/5. Bid now for more proper details
I want have the possibility to increase lotsize not alone by Lot-multiplier rather I want add a fix-lot increase for excample for 0,05 lot. I want have this for buy / sell and hedge-buy and hedge sell
I need someone to build an EA for me based on Trend and Pivot levels from custom Pivot and Trend indicators. I will provide more information to the selected programmer
Hello there! I have a ATAS bot that would be discussed properly with you once you bid to this project, But majorly what i need is either: An update to my bot that allows it to watch one chart and trade on another within ATAS. Or an add on of some kind that allows it to watch one ATAS chart and then communicate with a bot that can execute trades in MT4/5. Bid now for more proper details

Projektdetails

Budget
30 - 60 USD
Für die Entwickler
27 - 54 USD
Ausführungsfristen
von 3 bis 7 Tag(e)