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
등급
(42)
프로젝트
62
8%
중재
12
58% / 42%
기한 초과
1
2%
무료
2
개발자 2
등급
(337)
프로젝트
455
52%
중재
22
50% / 27%
기한 초과
5
1%
로드됨
3
개발자 3
등급
(85)
프로젝트
105
24%
중재
8
38% / 25%
기한 초과
8
8%
로드됨
4
개발자 4
등급
(196)
프로젝트
318
35%
중재
64
13% / 56%
기한 초과
82
26%
무료
5
개발자 5
등급
(28)
프로젝트
47
23%
중재
13
31% / 15%
기한 초과
12
26%
무료
6
개발자 6
등급
(10)
프로젝트
25
28%
중재
1
0% / 0%
기한 초과
1
4%
로드됨
7
개발자 7
등급
(68)
프로젝트
77
8%
중재
33
9% / 55%
기한 초과
6
8%
작업중
8
개발자 8
등급
(56)
프로젝트
175
71%
중재
4
100% / 0%
기한 초과
1
1%
무료
9
개발자 9
등급
(135)
프로젝트
192
42%
중재
17
29% / 59%
기한 초과
28
15%
무료
10
개발자 10
등급
(143)
프로젝트
255
35%
중재
12
25% / 58%
기한 초과
42
16%
무료
11
개발자 11
등급
(568)
프로젝트
641
41%
중재
21
57% / 29%
기한 초과
47
7%
작업중
12
개발자 12
등급
(451)
프로젝트
510
33%
중재
25
40% / 48%
기한 초과
7
1%
로드됨
13
개발자 13
등급
(264)
프로젝트
538
50%
중재
55
40% / 36%
기한 초과
224
42%
작업중
14
개발자 14
등급
(41)
프로젝트
58
55%
중재
2
0% / 0%
기한 초과
1
2%
무료
비슷한 주문
I need a chart to replicate/track my equity + Balance Curve into my mt4. Also this chart i need to be able to add Stochastic / Bollingerband / Moving average on the equity/balance curve. Besides the equity curve i would like the indicator to show the Line-chart of my win + 1 and my loss -1 which results in a win-loss curve. ( i will discuss this with the choosen developer in depth. ) More information on what i want
Hi, I need a robot, which wil get instructions to trade in 3 symbols at the same time based on few parameters and calculations. Example: There is 1 symbol called Gold-Near and the rate for it is 1000-1002 If i specify that when the rate reaches 1050, it should sell 1 lot Upon execution it will have to sell 1 lot of cme gold, buy 3 lots of mcx gold and buy currently (lots will be based on calculation). All the
are you aware of the Monday Range Strategy? https://www.youtube.com/watch?v=7B_yBBFx6z8 5pm EST time sunday - monday 5pm est and it has to be on the H1 chart , minimum 1:2 Risk to reward and break even function after 1:1
Need EA programmer to create an MT4 EA that will be able to leverage trades in favour of the market direction ,the EA should be able to operate to any broker. The EA must trade on a clear trend not when the Market is ranging. More will be explained once your application has been accepted for the job
Hey, great developer I have a thinkorswim script I want to convert it into TradingView. Can you please let me know if you can i will be looking for great developer that will bid for it best regards
Tradingview developer 30 - 35 USD
Hey greetings. I am in need of tradingview developer that can modify an open source PineScript indicator code to add additional features. Kindly bid for this project if it is what you handle and let proceed with the project
hi. I hv a strategy on tradingview need to convert to MT4/MT5 expert advisor for algo trading. would like to add some tradingview strategy setting to the EA(not included in my tradingview code): recalculate after order is filled, order size: xx% of equity
looking for help to get my ibkr automated, i have strategies already built in composer and have JSON for them, i really just need to he setup and explanation on how to maintain it and add new strategies
Hi there - Overview We are seeking an experienced developer to create a Forex Robot Expert Advisor (EA) tailored to specific trading strategies and conditions. The EA will focus on the London trading session and will automate trades based on pre-defined calculations and market movements. *Responsibilities:* 1. *London Session Analysis:* - Develop functionality to highlight the London trading session on the forex
Pending stop order software in the form of MQL4 expert advisor is what In need If any of the settings of the usual pattern of the EA is not clear to you, then I will explain that part

프로젝트 정보

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