Make me an EA using this logic

작업 종료됨

실행 시간 1 일
고객의 피드백
Maximum satisfaction as aways. Thanks a million
피고용인의 피드백
Everything perfect. Pleasure working with him as always!

명시


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


응답함

1
개발자 1
등급
(43)
프로젝트
65
11%
중재
12
58% / 42%
기한 초과
1
2%
무료
2
개발자 2
등급
(389)
프로젝트
564
53%
중재
27
56% / 22%
기한 초과
6
1%
작업중
3
개발자 3
등급
(93)
프로젝트
114
24%
중재
13
46% / 23%
기한 초과
8
7%
무료
4
개발자 4
등급
(203)
프로젝트
329
35%
중재
64
13% / 56%
기한 초과
86
26%
무료
5
개발자 5
등급
(29)
프로젝트
49
22%
중재
13
31% / 15%
기한 초과
13
27%
작업중
6
개발자 6
등급
(15)
프로젝트
34
24%
중재
3
0% / 33%
기한 초과
2
6%
작업중
7
개발자 7
등급
(72)
프로젝트
80
10%
중재
35
9% / 54%
기한 초과
6
8%
무료
8
개발자 8
등급
(75)
프로젝트
227
72%
중재
6
100% / 0%
기한 초과
1
0%
무료
9
개발자 9
등급
(136)
프로젝트
196
43%
중재
17
29% / 59%
기한 초과
28
14%
무료
10
개발자 10
등급
(154)
프로젝트
276
34%
중재
14
29% / 50%
기한 초과
42
15%
작업중
11
개발자 11
등급
(568)
프로젝트
641
41%
중재
24
50% / 29%
기한 초과
46
7%
작업중
12
개발자 12
등급
(535)
프로젝트
613
34%
중재
34
38% / 44%
기한 초과
9
1%
바쁜
13
개발자 13
등급
(270)
프로젝트
550
49%
중재
55
40% / 36%
기한 초과
227
41%
작업중
14
개발자 14
등급
(45)
프로젝트
63
52%
중재
3
0% / 0%
기한 초과
1
2%
무료
비슷한 주문
i am looking for an indicator that gives buy sell signal by placing arrows on the chart, signals must not repaint or be placed with an offset, i want it to be accurate enough so i can trade from signal to signal and actually make profit, do any one have a strategy and skill to create such an indicator, and also it is to mql5, ( Important is, It must have No repainting and No offset ), if you know it is something you
hello freelancers i need some one with a profitable ea for gold and dj30 i need the ea to be a scalping ea which places orders with sl and tp of 200 points for each trade and have a winning rate of more than 70 percent. if you have it already please apply for this
Description: I need a professional MetaTrader 5 developer to build a clean, fully editable Expert Advisor (EA) that strictly controls risk based on dollar-loss thresholds per lot size, and includes hard rules for equity protection and trade limits. Trade Management Rules 1. Dollar-Based Auto Close (Per Lot Size) The EA must close each individual XAUUSD trade once its loss in USD reaches a specific threshold tied to
hello dear developer I'm looking for a NinjaTrader developer to create a semi-automated trading strategy that enters trades based on visual text signals from my custom indicator. The strategy should handle automatic entries, allow manual management after entry, and include configurable settings like TP, SL, and trading time. If you're experienced with NinjaTrader and strategy development, feel free to reach out
I am looking to hire somebody to take my written description along with the code I have put together and fix it / optimize it and make it a profitable scalping EA that enters and exits positions quickly with profit
FVG/IFVG EA 30 - 600 USD
Hello, I’ve been trading manually for a few years and started algo trading more recently. As I currently lack the time and coding skills to build my own tools, I’m looking for a developer to code an Expert Advisor (EA) based on the Fair Value Gaps (FVG) and Inversion Fair Value Gaps (IFVG) strategy. The EA should detect standard bullish/bearish FVG. A valid IFVG signal occurs when the price enters the IFVG zone
can you give me a quote for a Quantower indicator? Indicator Explanation: This custom indicator, called Order Flow Blocks (MS/LS/MB/LB) , is used to display order flow information directly on the chart bars — meaning the flow of market orders. Specifically, it shows four types of volumes for each time bar (typically every minute): MS (Market Sell): Volume of market sell orders executed by aggressors (those who "hit"
is it just me or everyone is facing the similar interface ? anyone out there please let me know , all of a sudden normal white panel changed to gray like in the picture , then uninstalling and re-installing back to see that zeal capital is installing mt5 terminal from mql . anyone
i use several indicators on TV. I then use stochastic to count waves on price chart and waves of momentum on mACD chart. Then i use other indicators like FVg and liquidyt to enter trade . CAn anyone code this for me for alerts and automation and semi automation . ? Also can you code in ProrealTime the language is called Pro builder
Mql5 indicator 30+ USD
I'm looking for an indicator that gives buy sell signals by placing arrows on the chart Signals must not repaint or be placed with an offset I want it to be accurate enough so j can trade from signal to signal amd actually make profit Do anyone have a strategy and skill to create such an indicatore First priority is to mql5

프로젝트 정보

예산
100+ USD
개발자에게
90 USD
기한
 3 일