Expert Advisor

MQL4 Esperti

Lavoro terminato

Tempo di esecuzione 2 giorni
Feedback del cliente
Good Programmer.
Feedback del dipendente
Good customer.

Specifiche

Hello,

 

 

I am looking for someone to build me the following EA which uses the indicator below and 2 exponential moving averages

 

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Green
#property indicator_color2 Red
#property indicator_width1 2
#property indicator_width2 2
#property indicator_style1 STYLE_SOLID
#property indicator_style2 STYLE_SOLID

//-- External variables
extern int StPeriod   = 10;

//-- Buffers
double FextMapBuffer1[];
double FextMapBuffer2[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//|------------------------------------------------------------------|
int init()
{   
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0, FextMapBuffer1);
   SetIndexStyle(1,DRAW_LINE);
   SetIndexBuffer(1,FextMapBuffer2);        
   IndicatorShortName("Stretch Breakout Channel ("+ StPeriod +")");
   Comment("Copyright © http://www.pointzero-trading.com");
   return(0);
}

//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
{
   return(0);
}

//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
{
   // Start, limit, etc..
   int start = 0;
   int limit;
   int counted_bars = IndicatorCounted();
   
   // nothing else to do?
   if(counted_bars < 0) 
       return(-1);

   // do not check repeated bars
   limit = Bars - 1 - counted_bars;
   
   // Iteration
   for(int pos = limit; pos >= start; pos--)
   {
      int dshift = iBarShift(Symbol(), PERIOD_D1, Time[pos], false);
      double stretch = iCustom(Symbol(), PERIOD_D1, "Stretch", StPeriod, 0, dshift+1);
      double OPEN = iOpen(Symbol(),  PERIOD_D1, dshift);
      FextMapBuffer1[pos] = OPEN + stretch;
      FextMapBuffer2[pos] = OPEN - stretch;
   }
   return(0);
}

 

 RULES for THE EA

OPEN to buy = when 5 period EMA crossess ABOVE the upper break out line

SELL to close = when the  period EMA crosses BELOW the 50EMA and then wait untill the price retouches the upper break out line

 

 

OPEN to sell =  when 5 period EMA crossess BELOW the lower break out line

BUY TO open = when the  period EMA crosses ABOVE the 50EMA and then wait untill the price retouches the lower break out line

 

 

This should be for a UK spread betting account (GBP/point).

 

it may be nice to have stop loss function

and trading time HH:MM start and end period

 

 

Thanks 

Con risposta

1
Sviluppatore 1
Valutazioni
(590)
Progetti
789
71%
Arbitraggio
9
33% / 33%
In ritardo
22
3%
Gratuito
2
Sviluppatore 2
Valutazioni
(2436)
Progetti
3068
66%
Arbitraggio
77
48% / 14%
In ritardo
340
11%
In elaborazione
3
Sviluppatore 3
Valutazioni
(2091)
Progetti
2653
62%
Arbitraggio
114
45% / 25%
In ritardo
419
16%
Caricato
4
Sviluppatore 4
Valutazioni
(1131)
Progetti
1433
62%
Arbitraggio
21
57% / 10%
In ritardo
43
3%
Gratuito
5
Sviluppatore 5
Valutazioni
(88)
Progetti
138
25%
Arbitraggio
33
33% / 45%
In ritardo
59
43%
In elaborazione
6
Sviluppatore 6
Valutazioni
(61)
Progetti
120
34%
Arbitraggio
17
18% / 41%
In ritardo
51
43%
Gratuito
7
Sviluppatore 7
Valutazioni
(54)
Progetti
64
42%
Arbitraggio
5
20% / 60%
In ritardo
4
6%
Gratuito
8
Sviluppatore 8
Valutazioni
(414)
Progetti
670
33%
Arbitraggio
60
17% / 32%
In ritardo
113
17%
In elaborazione
Ordini simili
🔻 Sell Order - Conditions to Place the Order: Both conditions must be met to execute a sell order: Condition 1: After a doji bar, if the next two bars (or a configurable number of bars) are bearish and have no upper wicks: Open a sell trade when the second bearish bar (or the final bar in the sequence) closes. Condition 2: The Parabolic SAR indicator must be above the bars when entering the trade. Condition 3: entry
I am looking for high accuracy mt4 indicators (non repainting) or high profit bots. Do you have any such products? I am not looking to have anything built for me. I am only interested in products already built that have excellent track record (with proof)
Good day, I hope this message finds you well. I would like to request the development of an Expert Advisor (EA) for MetaTrader, based on two specific indicators: the Trend Path indicator and the Diamond Reversal indicator. Below are the details for the EA's logic and trade execution criteria: Sell Trade Criteria: Indicators and Signals: Trend Path Indicator : Shows a red trend. Diamond Reversal Indicator : Provides a
It only works for deriv, it was running properly but after not using it for a while it developed some bugs, I don't know what bugs it have but all my codes look fine. So l need the developer to check fr me the bugs and fix it. The strategy it uses is High frequency trend following bot using SMT divergence with MACD and MA confirmation triggered with 1m fvgs
Looking for an mql5 EA developer to build a custom EA for MT5 based on several simple variables. It will be initially used on 5m EUR/USD, but needs to work with any currency/commodity/stock/crypto. Custom risk management will also need to be built into the EA. Exact variables will be discussed in detail once a developer is selected, but a basic overview of the EA variables is below. Positions will be opened based on
I require a breakdown analysis of an existing EA I have been using with some success on MT4. If possible I would like a developer to breakdown the Smart Machine EA, to understand why it places trades, under what market conditions, what indicators it uses etc. With the requirement specifications from the EA, I would then like to modify it to reduce some risk, and create a new EA
Hello, Can you build and help me optimize the following very simple strategy using tradingview: 1.) On QQQ, Wait for market opening range 10 minute bar to close. 2.) Go long beyond the high of 10 min range OR short below on low of 10 min range. (intrabar entry not on close of next bar) 3.) Stop loss is the opposite end of the 10 minute range. All stops and exits are intrabar. Far backtesting can we use 10 minute
This EA is for renko charts. When a bullish candle closes above the last red dash -, open a buy trade at x pips from the close of that candle. If x=0, open a buy trade. When a bearish candle closes below the last blue dash -, open a sell stop at x pips from the low of the bearish candle, if x=0, open a sell trade. The stop loss of a buy trade should be placed at y pips from the low of the bearish candle with the red
Hello developers, no negotian please this is the fucken last badget for this EA I need to code EA which can sell and buy within my help(semi-auto) and by gathering data from an indicator. I have the indicator needed for the strategy. It is very semple job. Here is the rules : 1 - I can set which direction for the ea to work buy or sell . 2- the ea collect the
Good programme Skill needed, ability to built high frequency trading (hft) expert advisor that works on MT4 and MT5 no Grid, no Matin. just Short term trade that last 1sec - 5mins for profit take, that can be used to trade on demo and live accounts RAW ECN icmarket, Blackbullmarket, Fusion market, FPMarkets and 8cap. The EA has to be highly profitable, giving daily profit. If a test version is available, please send

Informazioni sul progetto

Budget
10 - 50 USD
Per lo sviluppatore
9 - 45 USD
Scadenze
da 1 a 5 giorno(i)