Bollinger Band based expert advisor

MQL4 Experts

Termos de Referência

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

Respondido

1
Desenvolvedor 1
Classificação
(117)
Projetos
138
41%
Arbitragem
30
7% / 77%
Expirado
17
12%
Livre
2
Desenvolvedor 2
Classificação
(2441)
Projetos
3076
66%
Arbitragem
77
48% / 14%
Expirado
340
11%
Livre
3
Desenvolvedor 3
Classificação
(599)
Projetos
932
46%
Arbitragem
31
39% / 29%
Expirado
93
10%
Livre
4
Desenvolvedor 4
Classificação
(221)
Projetos
369
66%
Arbitragem
10
50% / 0%
Expirado
46
12%
Livre
5
Desenvolvedor 5
Classificação
(135)
Projetos
193
42%
Arbitragem
17
29% / 59%
Expirado
28
15%
Livre
6
Desenvolvedor 6
Classificação
(414)
Projetos
670
33%
Arbitragem
60
17% / 32%
Expirado
113
17%
Trabalhando
7
Desenvolvedor 7
Classificação
(320)
Projetos
523
66%
Arbitragem
52
21% / 38%
Expirado
167
32%
Trabalhando
8
Desenvolvedor 8
Classificação
(80)
Projetos
117
67%
Arbitragem
16
25% / 13%
Expirado
12
10%
Livre
9
Desenvolvedor 9
Classificação
(130)
Projetos
210
40%
Arbitragem
90
20% / 43%
Expirado
85
40%
Livre
10
Desenvolvedor 10
Classificação
(121)
Projetos
134
66%
Arbitragem
36
25% / 56%
Expirado
22
16%
Livre
11
Desenvolvedor 11
Classificação
(491)
Projetos
1017
58%
Arbitragem
29
28% / 24%
Expirado
132
13%
Livre
12
Desenvolvedor 12
Classificação
(53)
Projetos
79
18%
Arbitragem
13
15% / 54%
Expirado
5
6%
Livre
13
Desenvolvedor 13
Classificação
(2102)
Projetos
2674
62%
Arbitragem
114
46% / 25%
Expirado
421
16%
Carregado
14
Desenvolvedor 14
Classificação
(66)
Projetos
95
28%
Arbitragem
20
25% / 55%
Expirado
24
25%
Livre
15
Desenvolvedor 15
Classificação
(266)
Projetos
540
50%
Arbitragem
55
40% / 36%
Expirado
224
41%
Trabalhando
16
Desenvolvedor 16
Classificação
(298)
Projetos
427
26%
Arbitragem
18
61% / 33%
Expirado
26
6%
Livre
17
Desenvolvedor 17
Classificação
(89)
Projetos
137
24%
Arbitragem
35
9% / 40%
Expirado
52
38%
Livre
18
Desenvolvedor 18
Classificação
(59)
Projetos
182
55%
Arbitragem
31
45% / 16%
Expirado
103
57%
Livre
19
Desenvolvedor 19
Classificação
(1)
Projetos
1
0%
Arbitragem
1
0% / 100%
Expirado
0
Livre
Pedidos semelhantes
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

Informações sobre o projeto

Orçamento
50 - 100 USD
Desenvolvedor
45 - 90 USD
Prazo
de 1 para 7 dias