Make me an EA using this logic

Job finished

Execution time 1 day
Feedback from customer
Maximum satisfaction as aways. Thanks a million
Feedback from employee
Everything perfect. Pleasure working with him as always!

Specification


1.     W1 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the Current Bar == Bullish &&

                                             ii.     If Current Bar Price > Maximum value between (Close or Open) of previous bar.

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY the Current Bar == Bearish &&

                                             ii.     If Current Bar Price < Min value between (Close or Open) of previous bar.

 

2.     D1 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the Current Bar == Bullish &&

                                             ii.     If Current Bar Price > Maximum value between (Close or Open) of previous bar.

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY the Current Bar == Bearish &&

                                             ii.     If Current Bar Price < Min value between (Close or Open) of previous bar.

 

3.     H4 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the Current Bar == Bullish &&

                                             ii.     If Current Bar Price > Maximum value between (Close or Open) of previous bar.

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY the Current Bar == Bearish &&

                                             ii.     If Current Bar Price < Min value between (Close or Open) of previous bar.

 

4.     H1 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the Current Bar == Bullish &&

                                             ii.     If Current Bar Price > Maximum value between (Close or Open) of previous bar.

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY the Current Bar == Bearish &&

                                             ii.     If Current Bar Price < Min value between (Close or Open) of previous bar.

 

5.     M30 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the Current Bar == Bullish &&

                                             ii.     If Current Bar Price > Maximum value between (Close or Open) of previous bar.

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY the Current Bar == Bearish &&

                                             ii.     If Current Bar Price < Min value between (Close or Open) of previous bar.

 

6.     M15 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the current Bar == Bullish  &&

                                             ii.     If previous Bar == Bearish  &&

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY current Bar == Bearish  &&

                                             ii.     If Previous Bar == Bullish  &&

 

7.     M5 Column:

a.     Color the cell Green and print “Buy”

                                               i.     If ONLY the current Bar == Bullish  &&

                                             ii.     If previous Bar == Bearish  &&

b.    Color the cell Red and print “Sell”

                                               i.     If ONLY current Bar == Bearish  &&

                                             ii.     If Previous Bar == Bullish  &&

 

1.     The EA will have a lot size input to be used when a trade is opened.

2.     The EA will have a  Trailing stop requirement pips

 

 

 


1.     EA must check for trading conditions:

a.     Open a Buy trade if M5,M15,M30,H1,H4,D1,W1 under the TREND COLUMN = Green == Buy

b.    Open a Sell trade if M5,M15,M30,H1,H4,D1,W1 under the TREND COLUMN = Red == Sell

 

2.     EA cannot duplicate or open the same/identical currency pairs at the same time.

3.     The lot size must be the same for each currency pair when opened.

 

 

1.     Trailing Stop loss:

a.     If a BUY trade is opened, automatically set a stop loss using M-15 Chart:

                                               i.     Compare the 2_previous_bar_ago and the immediate_previous_bar BEFORE the current bar

                                             ii.     Identify the lower_low between the 2 bars above

                                            iii.     Set the Trailing stop loss at the LOWER LOW Value.

 

b.     If a SELL trade is opened, automatically set a stop loss using M-15 Chart:

                                               i.     Compare the 2_previous_bar_ago and the immediate_previous_bar BEFORE the current bar

                                             ii.     Identify the Higher_high between the 2 bars above

                                            iii.     Set the Trailing stop loss at the HIGHER HIGH value.

 

2.     If Max Loss Account Balance is = Max Loss Account balance input, then CLOSE ALL TRADES.

 

 


1.     The EA will have all Automatic Close ALL Trades (Broker Terminal Time) inputs which I can SELECT or DE-SELECT

Each time any of this time is reach on the Terminal, the EA will check for open Trades and close all Open Trades at this time. 00:29, 00:59, 01:29, 01:59, 02:29, 02:59, 03:29, 03:59, 04:29, 04:59, 05:29, 05:59, 06:29, 06:59, 07:29, 07:59, 08:29, 08:59, 09:29, 09:59, 10:29, 10:59, 11:29, 11:59, 12:29, 12:59, 13:29, 13:59, 14:29, 14:59, 15:29, 15:59, 16:29, 16:59, 17:29, 17:59, 18:29, 18:59, 19:29, 19:59, 20:29, 20:59, 21:29, 21:59, 22:29, 22:59, 23:29, 23:59)

 

 


This is for my personal Decision, Not part of the EA function just Dashboard.

 

1.     TimeFrame = [“M5”,“M15”, “M30”, “H1”, “H4”, “D1”]

a.     Loop TimeFrame

1.     It uses Candle0 = current candlestick

2.     It uses Candle1 = candlestick before candle0

3.     It uses Candle2 = candlestick before candle1

4.     It uses Candle3 = candlestick before candle2

5.     It uses Candle4 = candlestick before candle3

6.     It uses Candle5 = candlestick before candle4

 

Bull Conditions

1.     Candle0 = bullish

2.     Candle1= bullish or bearish

3.     Candle2= bullish or bearish

4.     Candle3 = bullish or bearish

5.     Candle4 = bullish or bearish

6.     Candle5 = bullish or bearish

7.     Candle2_Low < Candle1_Low && Candle1_Low > Candle0_Low && Candle2_Low < Candle0_Low &&

8.     Candle0_High >= Maximum value between (Candle1_OPEN or Candle1_CLOSE) &&

9.     (Candle3_high<Candle4_high) or (Candle3_high<Candle4_high<candle5_high) or (Candle3_low<Candle4_low) or (Candle3_low<Candle4_low<candle5_low)

10.  Print “Bullish” on the chart

 

 

Bear Conditions

1.     Candle0 = bearish

2.     Candle1= bullish or bearish

3.     Candle2= bullish or bearish

4.     Candle3 = bullish or bearish

5.     Candle4 = bullish or bearish

6.     Candle5 = bullish or bearish

7.     Candle2_High > Candle1_High && Candle1_High < Candle0_High && Candle2_High > Candle0_High &&

8.     Candle0_low <= Minimum value between (Candle1_OPEN or Candle1_CLOSE) &&

9.     (Candle3_high<Candle4_high) or (Candle3_high<Candle4_high<candle5_high) or (Candle3_low<Candle4_low) or (Candle3_low<Candle4_low<candle5_low)

10.  Print “Bearish” on the chart


Responded

1
Developer 1
Rating
(42)
Projects
62
8%
Arbitration
12
58% / 42%
Overdue
1
2%
Free
2
Developer 2
Rating
(331)
Projects
451
52%
Arbitration
22
50% / 27%
Overdue
5
1%
Loaded
3
Developer 3
Rating
(83)
Projects
103
24%
Arbitration
7
43% / 29%
Overdue
8
8%
Working
4
Developer 4
Rating
(196)
Projects
318
35%
Arbitration
64
13% / 56%
Overdue
82
26%
Free
5
Developer 5
Rating
(28)
Projects
47
23%
Arbitration
13
31% / 15%
Overdue
12
26%
Free
6
Developer 6
Rating
(10)
Projects
25
28%
Arbitration
1
0% / 0%
Overdue
1
4%
Working
7
Developer 7
Rating
(67)
Projects
76
7%
Arbitration
33
9% / 55%
Overdue
6
8%
Working
8
Developer 8
Rating
(56)
Projects
166
69%
Arbitration
4
100% / 0%
Overdue
1
1%
Free
9
Developer 9
Rating
(135)
Projects
192
42%
Arbitration
17
29% / 59%
Overdue
28
15%
Free
10
Developer 10
Rating
(143)
Projects
255
35%
Arbitration
12
25% / 58%
Overdue
42
16%
Free
11
Developer 11
Rating
(567)
Projects
641
41%
Arbitration
21
57% / 29%
Overdue
47
7%
Working
12
Developer 12
Rating
(440)
Projects
498
33%
Arbitration
25
40% / 48%
Overdue
7
1%
Busy
13
Developer 13
Rating
(263)
Projects
537
50%
Arbitration
55
40% / 36%
Overdue
224
42%
Free
14
Developer 14
Rating
(41)
Projects
58
55%
Arbitration
2
0% / 0%
Overdue
1
2%
Free
Similar orders
This mql4 got entry blue line and exit red line and pips inside also calculated it uses haiken Ashi and murray Math settings if you this you up for this job let's discuss it we will talk more when you are chosen thanks in advance
i Want to convert this Trading View Code to Mt4 Indicator indicator("NEOM Smart Money Concepts ", "NEOM Smart Money Concepts " , overlay = true , max_labels_count = 500 , max_lines_count = 500 , max_boxes_count = 500 , max_bars_back = 500) //-----------------------------------------------------------------------------{ //Constants //-----------------------------------------------------------------------------{ color
Hello Amazing developer am looking for profitable EA for mt4 and made for some past year and i will be looking forward for your bid if you have mt4 EA let Negotiate in the contact box best regards
Hello Amazing developer am looking for profitable EA for mt4 and made for some past year and i will be looking forward for your bid if you have mt4 EA let negotitate in the contact box best regartds
1. **Timeframe and Liquidity:** Focus on the 5-minute timeframe for liquidity analysis.(timeframe for liquidity should be editble) 2. **Candlestick MSS:** Monitor 1-minute candlestick patterns for entry signals.(should be editble) 3. **Swing Points:** Identify swing points using the high and low of the last three candles.(ict swimg high and low) 4. **Sell Setup:** - Wait for a 5-minute candle to take out the swing
Hello great developer Can you build this indicator for Quantower. If positive, then how much will it cost to make automated strategy from the indicator? i will be looking for great developer to build for this project best regards
Hello Greetings. I have a custom tradingview strategy I would like to convert to Metatrader 5 ( mt5 ) . I have the source code a and with me. Kindly bid if it is what you can do for me and let discuss about the project. Thanks
I'm looking for a developer who has already working on a HFT tailored to pass prop firm challenges within a short period, maintaining a very low drawdown. Here is a link to a video demonstrating an existing EA executing the same strategy: https://youtu.be/N6NEcIpPzV4 Any developer having already worked on this type of project and able to provide quickly a test version is welcome to contact me
Attached to this post is the pinescript tradingview indicator code, i will also attach a link to the youtube explanatory video of how the indicator works on tradingview, i will like the exact thing on mt5, including the percentage prediction on each bar and the win loss counter ... it should work on both forex, stock and volatility indices on mt5 https://youtu.be/30FLWyEWroM?si=q9GpvJVHp-oyvsvZ // This work is
Hello, I hope you are well. I have an alert/s that I would like to provide buy and sell orders. The alerts are named *ENTRY* and *EXIT*, so the EA will know what to do. I would like the EA to have the following parameters: 1. Select the number of trades per currency pair 2. Time to trade: Time to start trading to time to end trading - I would like 4 different times to be able to be entered 3. Option to choose which

Project information

Budget
100+ USD
For the developer
90 USD
Deadline
to 3 day(s)