Bollinger Band based expert advisor

MQL4 Experts

Spécifications

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

Répondu

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

Informations sur le projet

Budget
50 - 100 USD
Pour le développeur
45 - 90 USD
Délais
de 1 à 7 jour(s)