Need EA programmer to make an EA that uses MT4's Fibonacci Retracement Tool, MACD and RSI

MQL4 Asesores Expertos Fórex

Tarea técnica

The first section will describe the EAs trading strategy logic and features. The second section is an outline of the inputs that the EA should contain.  

1. The idea of the trading system is as follows

  • This EA enters trades based on fibonacci retracement levels when other (MACD, RSI) conditions are met. 

  • It will use a MACD from a particular time frame to establish the swing high and swing lows which the fibonacci tool will draw the retracement levels. 

  • The EA will have the option to use fibonacci levels for  TP, take profit in pips, or TP in % to take profits.  

  • It will have the option to use fibonacci levels for SL, or SL in pips, and SL in % to close losing trades. 

  • It should also include an option to set entry, tp, sl , x amount of pips away from the fib level, or at the nearest multiple of 25 (below for long trades, above for short)  see Snap to multiple below 

  • Snap to multiple - Option to have trades (entry, trades in a string, tp, sl) snap to a nearest multiple above or below retracement levels. (i.g. 25, 50 100 ..ex for 25 1.2425 1.2450, 1.2475 1.2500).  Above for long trades, below for short trades. 

  • The EA will have the option of trading 2 ways.  1. A single trade (i.e. price retraces to the 61.8 level and opens a trade the price continues to fall and eventually hits the stop loss.)  2. The EA will open a trade when it reaches a retracement level, and open limit orders on other retracement levels and open another trade if price continues to fall (i.e price retraces to 38.2 and opens an order and places limit orders at 50 61.8 and 78.6. The EA will keep previous trades open and open subsequent trades at 50, 61.8 etc) 

  • It will have a martingale option (String lot multiplier)  in the same trade, and on subsequent entries if the previous was a loss for both types of trades the EA can make. (i.e for trade type 1 if the first trade of .10 lots results in a stop loss, when entry conditions are met for the next trade it will open a trade of .20 lots and continue to multiply the lots until it hits a TP.  For trade type 2 it will open the first trade at .10 at 38.2 and limit order of .20 .40 .80 on levels 50 61.8 and 78.6.

  • Ability to  set a risk % so the EA will calculate how many lots to trade based on account balance. 

  • Option to use trailing stop and trailing step

  • A clock to set trade times

  • Have a display panel on the screen that shows balance, equity, profit or loss on current open trade, profit for today, week, month, and year.

  • Option to close trades when MACDs on a particular time frame goes from positive to negative or vice versa.

  • Ability to edit RSI setting 

  • Option to choose multiple MACDs to determine the trend (i.e H4 and D1 macd need to be positive for a long trade)

  • Section for fibonacci tool settings include 

    • Option to choose which time frame the FRT will draw retracement levels from using the macd from that times frame

    • Settings for the MACD

    • Space for 7 levels  0.0 23.6, 38.2, 50, 61.8, 78.6, and 100

    • Option to turn on/off entry, tp, and sl for each level

The following is the order in which each feature should appear in the EA inputs.  Most are self explanatory. I’ll try to provide an example (ex) of what the feature should do next to it.


  1. Money management - there should be a true/false option next to each so the EA knows which one to use when trading.

    1. Lot size (.01, .10)

    2. Risk size % - it will calculate the risk based on how much the trade could lose at the stop loss. Ex 5% risk - for trade type 1 if the stop loss is 50 pips away and the account balance is $1,000 the EA would make a trade for .10 lots so if it loses it will only lose $50 or 5% of the equity.  

      1. It will do the same for trade type 2 except it will divide the risk among multiple trades/entries.  If there are 5 trades including entry and limit orders, the EA will divide 5% risk among the 5 trades. If martingale strategy is used it will calculate the amount of lots to use so that the total loss does not exceed 5% if the stop loss is hit.

    3. Take profit in pips - if this box is marked true then the trade will take profit when it reaches x amount of pips even if it does not make it to the take profit placed at the next retracement level. 

      1. Ex the take profit is 50 pips, and the TP at the next retracement level is 75 pips away the EA will take profit when it hits 50 pips and close the trade.   

      2. If the EA is supposed to TP at 50 pips and the TP at the retracement level 40 pips away, The EA will TP at the retracement level 40 pips away and close the trade.  

      3. So if a TP is selected for a retracement level and a TP in pips is selected the EA will take profit and close the trade at whichever one it hits first.  

    4. Stop loss in pips - This will follow the same logic as take profit in pips except it will be for the stop loss. 

    5. Martingale settings

      1. Lot multiplier -  if there are multiple trades in the string, this determines which each subsequent lot would be.  Ex if 2 is entered and the first trade is .10 lots the next trade would be .20 (.10 * 2=.20).  If 1 is entered each trade would be .10 or whatever the first trade is.

      2. String lot multiplier - This setting is used to tell the EA to  multiply the next trade by x amount, if the previous trade hits the stop loss.  It will continue to do so until it recovers to the amount the account was at before it stopped out.  For trade type 2 it will multiply the initial trade as well as the others until the original balance has been recovered. 


  1. Multiples

    1. Enable multiple - if true, trades will be entered, and TP will be placed on nearest multiple (for long trades, entry nearest multiple above retracement level, TP on nearest multiple below retracement level, SL nearest multiple below retracent.  The opposite for short trades) . If false, trades are entered, TP and SL are placed exactly at the retracement level. 

    2. There should be an input for which multiple is used.  

      1. Ex 25  trades, TP, SL placed on 1.2400, 1.2425, 1.2450 etc.

      2. Ex 50 trades, tp, sl planced on 1.2400, 1.2450, 1.2500

      3. Ex 100 trades, tp, sl placed on 1.2400, 1.2500, 


  1. Indicators - there should be space for all the applicable settings for each indicator.  

    1. 9 spaces for RSI settings for minute 1 time frame to Month 1 time frame

    2. 9 spaces for MACD settings for minute 1 time frame to Month 1 time frame

    3. There should be a true/false option next to each. If The time frame is marked true, a trade can only be entered if conditions are met on each time frame selected. There should be a buy and sell level for each MACD.  Ex if the buy level for the MACD is set at .005 the MACD would have to at least be .005 or higher for a long trade to be initiated.  


  1. Fibonacci retracement tool (FRT) - this is the section for the fibonacci retracement tool.  It will use the MT4 default FRT.  

    1. The FRT will draw its swing high and swing lows from a designated MACD time frame.  

    2. For long trade setups -  When the MACD is in positive territory the FRT will draw from the swing low to the swing high.  The swing low should be at the bottom of the lowest candle that occurred when the MACD was in negative territory.  The swing high will be at the highest point of the highest candle.  The EA should continue to recalculate the FRT as the price continues to reach new highs.  

    3. For short trade setups -  When the MACD is in negative  territory the FRT will draw from the swing high to the swing low.  The swing high should be at the top of the highest candle that occurred when the MACD was in positive territory.  The swing low will be at the lowest point of the lowest candle.  The EA should continue to recalculate the FRT as the price continues to reach new lows. 

    4. FRT time frame - this is the first input in this section - the EA will draw the FRT from the swing high and swing lows of this MACD’s time frame. There should also be an area to provide the indicator settings for this MACD

    5. FRT levels - this section is where I will tell the EA which fibonacci levels to use for entries, TP and SL.  There should be inputs for 0.0 23.6, 38.2, 50, 61.8, 78.6, and 100

    6. There should be 3 inputs under each level, except 0 and 100 which will have 2

    7. Entry - Levels - 23.6-78.6 will have true/false options to be used as potential entry points for trades

    8. Take Profit - All levels 0-100 will have the option to be used for take profit. If a trade is entered at 61.8 and 50 is selected as a TP the EA will close the trade there.  If a trade is entered at 61.8 and 50 is not selected as a TP but 38.2 is the EA will not close the trade until it hits 38.2 (or the nearest multiple if that’s selected). 

    9. Stop Loss - All levels will have the option to be used as a stop loss.

 

*Note - only 1 trade should be opened after hitting a level. Ex: if a trade is opened on 38.2, goes up but doesn’t hit tp and then touches 38.2 again, it should not open another trade there.  The next trade would open at the next level.  If the trade is stopped out, rises and hits the 38.2 again it can open another trade.


Han respondido

1
Desarrollador 1
Evaluación
(22)
Proyectos
30
20%
Arbitraje
8
63% / 13%
Caducado
9
30%
Libre
2
Desarrollador 2
Evaluación
(75)
Proyectos
92
42%
Arbitraje
4
50% / 50%
Caducado
2
2%
Libre
3
Desarrollador 3
Evaluación
(242)
Proyectos
428
34%
Arbitraje
54
37% / 39%
Caducado
156
36%
Ocupado
4
Desarrollador 4
Evaluación
(10)
Proyectos
25
28%
Arbitraje
2
0% / 0%
Caducado
1
4%
Trabajando
5
Desarrollador 5
Evaluación
Proyectos
1
0%
Arbitraje
0
Caducado
0
Trabaja
6
Desarrollador 6
Evaluación
(16)
Proyectos
22
36%
Arbitraje
0
Caducado
2
9%
Trabaja
7
Desarrollador 7
Evaluación
(61)
Proyectos
186
73%
Arbitraje
4
100% / 0%
Caducado
1
1%
Libre
8
Desarrollador 8
Evaluación
(266)
Proyectos
540
50%
Arbitraje
55
40% / 36%
Caducado
224
41%
Libre
9
Desarrollador 9
Evaluación
(1)
Proyectos
3
33%
Arbitraje
1
0% / 100%
Caducado
2
67%
Libre
10
Desarrollador 10
Evaluación
(256)
Proyectos
415
38%
Arbitraje
86
44% / 19%
Caducado
70
17%
Ocupado
11
Desarrollador 11
Evaluación
(9)
Proyectos
13
15%
Arbitraje
5
0% / 60%
Caducado
1
8%
Trabaja
12
Desarrollador 12
Evaluación
(71)
Proyectos
80
10%
Arbitraje
35
9% / 54%
Caducado
6
8%
Trabaja
13
Desarrollador 13
Evaluación
Proyectos
2
0%
Arbitraje
1
100% / 0%
Caducado
1
50%
Libre
Solicitudes similares
There are six conditions in total . source code from an existing expert will be provided to aid the completion of this job . - Install the following by the Panel (copy paste form my existing Expert ) 1. Pips Lost : number of pips lost ( monthly reset ) 2. Pips Gained : number of pips gained ( monthly reset ) 3. Have a black background to avoid the
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA. # MANUAL ZONE MARKING # THREE TYPES OF ENTRIES (
у нас есть стратегия, нам нужно написать mql5-код ​​для тестера стратегий МТ5,Цена договорная. Мой контакт @abbosaliyev из Telegram Программист должен знать РУССКИЙ ИЛИ УЗБЕКСКИЙ язык. Задание: разработать тестер, который использует шаблон условий на открытие и проверит весь исторический график на всех доступных таймфреймах. Остальная информация будет предоставлена ​​после согласования цены
Hello, I want to make an EA based on SMC and a developer that is familiar with the concept and full understanding of this. Must have done similar jobs before and be able show it. I only want to work with developer that has good track record and is precise. Further information will be handed when contact is made. Developers that has zero rating will not be considered. Listed price is a base point. The project can also
There are six conditions in total . source code from an existing expert will be provided to aid the completion of this job . - Install the following by the Panel (copy paste form my existing Expert ) 1. Pips Lost : number of pips lost ( monthly reset ) 2. Pips Gained : number of pips gained ( monthly reset ) 3. Have a black background to avoid the
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 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)
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 é
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
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
Utilizing the MQL5 MetaEditor Wizard, I created an Expert Advisor, having the following Signal indicators: I was able to optimize the EA and reached a backtest with the following specifications: I was able to reach a profit level of 30K, as indicated below. However, the Bot is not without faults and following the backtest, I started a forward test with real live data and the results were not so great. The EA took a

Información sobre el proyecto

Presupuesto
30 - 100 USD
Para el ejecutor
27 - 90 USD
Plazo límite de ejecución
a 7 día(s)