Bollinger Band based expert advisor

MQL4 Asesores Expertos

Tarea técnica

I need an expert advisors that:
a) enters a long position when the closing price of a bar is below the lower Bollinger band while the closing price of the previous one was above.
b) a) enters a short position when the closing price of a bar is above the upperBollinger band while the closing price of the previous one was below.
c) Profit is taken on tick anytime the take profit limit defined is pips is reached OR
d) Profit is taken on tick anytime the price comes inside the smaller Bollinger bands “SUPO” and “SLOBO”
e) Stop loss is triggered on tick whenever the Stop loss level is reached.
Further details and structure below…


Inputs :
• N = Number of bars used for AVERAGE and STANDARD DEVIATION calculation
• X= Multiplier of the BigBollinger
• Y= Multiplier of the SmallBollinger
• TP=Take Profit level in pips
• SL=Stop Loss level in pips
• BLK= Slope Blocker Level in % (X.YZ%)
• BEGIN = GMT time where trading starts
• END=GMT time where trading ends
• NOTRADAY=days of the week where trading does not take place
• VOL = volume, number of USD per pip

Variables:
• AVG = simple average of “open, high, low, close” prices for each bar over past N bars
• STDEV = standard deviation of “open, high, low, close” prices for each bar over past N bars
• BUBO =  AVG + (X * STDEV)  “Big Upper Bollinger of last bar”
• BUBO1 =  AVG + (X * STDEV)  “Big Upper Bollinger of previous bar”
• SUPO = AVG + (Y * STDEV) “Small Upper Bollinger of last bar ”
• SLOBO = AVG – (Y * STDEV) “Small Lower Bollinger of last bar”
• BILOBO = AVG – (X * STDEV) “Big Lower Bollinger of last bar”
• BILOBO1 = AVG – (X * STDEV) “Big Lower Bollinger of previous bar”
• CL0 = last price of last bar
• CL1=last price of previous bar
• SLOPE = (CL1-CL0)/CL0

Trade Initiation rule :
• Buy and Sell trades are initiated at the time the last price of a bar is released and trading takes place immediately after that
• Stop loss and take profit are triggered anytime a tick reaches the corresponding price
• No trade takes place before GMT time START and any opened trade is closed after GMT time END
• No trade takes place on days of the week specified as NOTRADAY

Trading Rules:

SELL TRADE
On the last price of any bar: IF && CL0>BUBO && CL1<BUBO1 && SLOPE<BLK  BUY
Take profit on any tick if:
Profit in pips > TP
OR
IF CLO <= SUPO
Stop loss on any tick if:
 Loss in pips >=SL 

BUY TRADE
On the last price of any bar: IF && CL0<BILOBO && CL1>BILOBO1; SLOPE>-BLK  BUY
Take profit on any tick if:
Profit in pips > TP
OR
IF CLO >= SLOBO
Stop loss on any tick if:
 Loss in pips >=SL 

Additional Comments:
• I need the MT4 full source code
• When compiled, the EA must return no error

Han respondido

1
Desarrollador 1
Evaluación
(117)
Proyectos
138
41%
Arbitraje
30
7% / 77%
Caducado
17
12%
Libre
2
Desarrollador 2
Evaluación
(2441)
Proyectos
3076
66%
Arbitraje
77
48% / 14%
Caducado
340
11%
Libre
3
Desarrollador 3
Evaluación
(599)
Proyectos
932
46%
Arbitraje
31
39% / 29%
Caducado
93
10%
Libre
4
Desarrollador 4
Evaluación
(221)
Proyectos
369
66%
Arbitraje
10
50% / 0%
Caducado
46
12%
Libre
5
Desarrollador 5
Evaluación
(135)
Proyectos
193
42%
Arbitraje
17
29% / 59%
Caducado
28
15%
Libre
6
Desarrollador 6
Evaluación
(414)
Proyectos
670
33%
Arbitraje
60
17% / 32%
Caducado
113
17%
Trabaja
7
Desarrollador 7
Evaluación
(320)
Proyectos
523
66%
Arbitraje
52
21% / 38%
Caducado
167
32%
Trabaja
8
Desarrollador 8
Evaluación
(80)
Proyectos
117
67%
Arbitraje
16
25% / 13%
Caducado
12
10%
Libre
9
Desarrollador 9
Evaluación
(130)
Proyectos
210
40%
Arbitraje
90
20% / 43%
Caducado
85
40%
Libre
10
Desarrollador 10
Evaluación
(121)
Proyectos
134
66%
Arbitraje
36
25% / 56%
Caducado
22
16%
Libre
11
Desarrollador 11
Evaluación
(491)
Proyectos
1017
58%
Arbitraje
29
28% / 24%
Caducado
132
13%
Libre
12
Desarrollador 12
Evaluación
(53)
Proyectos
79
18%
Arbitraje
13
15% / 54%
Caducado
5
6%
Libre
13
Desarrollador 13
Evaluación
(2102)
Proyectos
2674
62%
Arbitraje
114
46% / 25%
Caducado
421
16%
Trabajando
14
Desarrollador 14
Evaluación
(66)
Proyectos
95
28%
Arbitraje
20
25% / 55%
Caducado
24
25%
Libre
15
Desarrollador 15
Evaluación
(266)
Proyectos
540
50%
Arbitraje
55
40% / 36%
Caducado
224
41%
Trabaja
16
Desarrollador 16
Evaluación
(298)
Proyectos
427
26%
Arbitraje
18
61% / 33%
Caducado
26
6%
Libre
17
Desarrollador 17
Evaluación
(89)
Proyectos
137
24%
Arbitraje
35
9% / 40%
Caducado
52
38%
Libre
18
Desarrollador 18
Evaluación
(59)
Proyectos
182
55%
Arbitraje
31
45% / 16%
Caducado
103
57%
Libre
19
Desarrollador 19
Evaluación
(1)
Proyectos
1
0%
Arbitraje
1
0% / 100%
Caducado
0
Libre
Solicitudes similares
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market
I want grate robot for making profits that know when to start a good trade and close a trade and must be active all time to avoid lost of money
I have developed a very strong TradingView strategy in Pine Script but unfortunately, a third-party connector is requiired and in my opinion, I want a more direct connection. I am not brilliant at coding, but I have coded the majority of the MT5 code and I would like you to make sure that the MT5 code matches my TradingView script and executes the same way as the TradingView script that I will provide if you are
Mbeje fx 50+ USD
I like to own my robot that why I want to build my own.i like to be a best to every robot ever in the life to be have more money
I need an MT5 EA that can do the following: I have to give the EA a price in advance, when the price is reached the EA has to automatically place a buy stop or sell stop order 0.5 pips below or above the price. Is this possible
Dr Pattern 30+ USD
good day i need the service of the seaso coder to help me fix my ea The Job required 1 knowledge of Mt4 and Mt5 indicator coding 2. Telegram code 3. ability to code indicator to work on multiple Time frame combine to trade 4 Ability to Join two or three indicator on same ir different time frame if you have these skill please let chart i will discuss the details of the Job inside to you The required day including
Good day, I want someone to help me create a universal news filter with on/off switch, with start and end settings, and drawdown control with magic number of EAs, etc. Thanks
Hello, I am looking for a professional programmer to optimize my existing EA integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. i want it to be an EA that can be trusted to carry trade with the help of chat gpt and also have a very low drawdown
Hello, I am looking for a professional programmer to create a trading expert on the MT4 platform, integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. Further details will be provided to the applicants later

Información sobre el proyecto

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