Kenny

MQL4 Experts

Termos de Referência

 I would like a software ReversalIndicators.ex4 that I have and can attach to work in Autotrading as an expert advisor. Anyone can help?

In summary Expert advisor to do the following:

1.       Have an input start of day time for trading (I set a variable time?)

2.       Have an end of day close time variable for trading (I set a variable time?)

3.       Close open order for symbol at close of day time (don’t leave order live to avoid gaps)

4.       Variable lot size option 0.01 to 10

5.       If Reversal Indicator software = Blue indicator buy market order

6.       a stop loss at the bottom of the candle stick it indicates (is it possible to add a variable pip stop loss to move away from the candlestick?)

7.       + a target price of say 20 pips from just open order a variable or off option might be a better solution.

8.       If Reversal Indicator software = RED indicator Sell market order with a stop loss at the bottom of the candle stick it indicates (is it possible to add a variable pip stop loss to move away from the candlestick?)

9.       + a target price of variable or off option in pips from just open order

10.   If an order is open and a new indicator (Red or Blue) is calculated close open order and open new order with parameters of 5 to 8

11.   Activate EA true  / False

12.   Slippage Value 3

13.   Max positions 1

14.   Trailing stop

Eg:

input double Lot = 1; (or Variable)
input int TakeProfit = 20; (or Variable)
input int StopLoss = 10; (or Variable)
input int TrailingStop = 150; (or Variable or off)
input int Slippage = 3;
input int MaxOrders = 1;
input int Magic = 666;
input int PERIOD = 15; (or Variable)
input int MaxSpread = 5; (or Variable)

Would also like the following code as an example added to minimize losses for any pair selected.

extern string EnterBEPips = "Please Enter profit pips to move SL to BE.";

extern double BE_Pips = 10; (or Variable or off)

//+------------------------------------------------------------------+

//| expert initialization function                                   |

//+------------------------------------------------------------------+

int init()

  {

//----

  

//----

   return(0);

  }

//+------------------------------------------------------------------+

//| expert deinitialization function                                 |

//+------------------------------------------------------------------+

int deinit()

  {

//----

  

//----

   return(0);

  }

//+------------------------------------------------------------------+

//| expert start function                                            |

//+------------------------------------------------------------------+

int start()

  {

//----

   if(Symbol()=="USDJPY" || Symbol()=="EURJPY" || Symbol()=="GBPJPY")

      return(0);

  

   int type;

   int ticket;

   int total = OrdersTotal();

   double openPrice, stopPrice;

  

   for(int i=total-1;i>=0;i--)

   {

      for(int j=i;j>=0;j--)

      if(OrderSelect(i, SELECT_BY_POS))

      {

         ticket = OrderTicket();

         type = OrderType();

         openPrice = OrderOpenPrice();

         stopPrice = OrderStopLoss();

         if(type == OP_SELL && stopPrice > openPrice && Ask<= (openPrice-BE_Pips*0.0001) && OrderSymbol()==Symbol())

            OrderModify(ticket,OrderOpenPrice(),OrderOpenPrice(),OrderTakeProfit(),0,Red);

         else if(type == OP_BUY && stopPrice < openPrice && Bid>= (openPrice+BE_Pips*0.0001)&& OrderSymbol()==Symbol() )

            OrderModify(ticket,OrderOpenPrice(),OrderOpenPrice(),OrderTakeProfit(),0,Blue);

      }

   }

  

//----

   return(0);

  }

//+------------------------------------------------------------------+

Let me know if this covers it. Thanks!

 

 

Arquivos anexados:

Respondido

1
Desenvolvedor 1
Classificação
(1856)
Projetos
3459
88%
Arbitragem
73
40% / 15%
Expirado
265
8%
Livre
2
Desenvolvedor 2
Classificação
(2429)
Projetos
3059
66%
Arbitragem
77
48% / 14%
Expirado
340
11%
Livre
3
Desenvolvedor 3
Classificação
(70)
Projetos
86
31%
Arbitragem
1
100% / 0%
Expirado
1
1%
Livre
4
Desenvolvedor 4
Classificação
(647)
Projetos
1295
67%
Arbitragem
84
26% / 49%
Expirado
338
26%
Livre
5
Desenvolvedor 5
Classificação
(9)
Projetos
18
28%
Arbitragem
2
50% / 50%
Expirado
6
33%
Livre
6
Desenvolvedor 6
Classificação
(49)
Projetos
134
27%
Arbitragem
62
13% / 53%
Expirado
58
43%
Livre
7
Desenvolvedor 7
Classificação
(62)
Projetos
140
46%
Arbitragem
19
42% / 16%
Expirado
32
23%
Livre
Pedidos semelhantes
Tdi makes a divergence with moving average 2 in the indicator window above level 68 in crash indeces.... For boom the divergence should occur below level 32.... Timeframe preferably 5minutes but could be left to current..Applicant should have knowledge about synthetic indices... Please don't apply if you are not willing to show competence first through demo
I am seeking an experienced MQL5 developer to complete an incomplete EA that was previously developed but not finalized. The EA involves complex zone marking, multi-timeframe analysis, and various entry strategies (Engulfing, Divergence, Aggressive) with specific stop loss, take profit, and Martingale management. The previous developer has provided the progress made so far, including an EA file and documentation
Need a developer who can provide an MQ4 EA or Python Code which could generate at least 0.5% per day (Stable or consistent). Strategy: - Enter in any side of trade (long or short) - trade will close with profit or loss in may be 2 to 5 minutes with best AI inside volume parameters, then wait for next trade but cooling time will be there and in 24 hours it will take 80 to 95 trade - Lots size will be depends on
Hello - Looking for a professional developer who can help on this concept. I want to create an EA with just the below input. The EA will however have an automated TP condition to enable it close bids when about to reverse. It will also have a mid price condition to enable it track the market movement. Like the below picture, the Highest price is in Green, the mid price is in orange and the lowest price is in red
I have an EA that reads a series of values from my MT4 and MT5 terminals and then writes them to a CSV. The outputs are a combination of account-specific figures and values related to the connected signal, per the signal properties on MQL5 . I have recreated the CSV data in the table below, showing the resulting values from both the MT4 and MT5 terminals: Label API property MT4 output MT5 output Account number
1) The EA will be in MLQ5 language and should be able to run continuously on the VPS and should be able to trade any instrument. The source code and rights will automatically remain mine. 2) This order is inclusive of at least one day of trial on VPS to confirm that EA does correct order placement 3) The EA should be able to run in multiple timeframes especially M1, M2, M5, M15, M30, H1
AN EXPERIENCED PROGRAMMER IS REQUIRED TO INCLUDE A HEDGING SYSTEM IN EXPERT ADVISOR AND CORRECT INABILITY OF ADVSIOR TO MOUNT TO METATRADER VPS THE PROGRAMMER WILL MODIFY EXISTING HEDGING SYSTEM AND ALSO INCLUDE HIS OWN PROVEN HEDGING SYSTEM TO THE EXPERT ADVISOR TO INCREASE THIS IS TO AID THE USE OF THE ADVISOR WITHOUT A STOPLOSS SYSTEM BUT RATHER A HEDGE SYSTEM
A programing of forex robot algorithm trading bot I need a professional programmer to help check this project and give his opinion and to guide me through. This is the link below ,i will be looking forward for response ahttps://algogene.com/contest/league
MT5 EA Needed 30 - 250 USD
Hello, I need an English-speaking experienced programmer with availability this week to create an EA for MT5, based on the provided requirements specifications. The algorithm is pretty basic; I will share the detailed RS with the selected developer, including the data to use, lists of inputs, errors, actions to take when lists of conditions are true, calculations for orders, etc.; no indicators to be used at this
Seeking Professional Software Developer for Trading Indicator Development and Conversion I'm looking for an experienced software developer to help me design and develop custom trading indicators, as well as convert existing indicators to other platforms

Informações sobre o projeto

Orçamento