R Scalper

MQL4 전문가

작업 종료됨

실행 시간 3 일
고객의 피드백
very good job. He understood the requirements perfectly and executed the job fast
피고용인의 피드백
Thanks for good job and excellent respect!!!

명시

I would like a simple EA to be coded to trade when there is a reversal.

The condition for the trade is as follows:

Buy Entry : There is to be 5 consecutive candles with lower Highs. When the current price breaks the Bar[1]'s High, then a buy trade is activated.

Sell Entry : There is to be 5 consecutive candles with higher Lows. When the current price breaks the Bar[1]'s Low, then a sell trade is activated.


Detail Description as follows:

 

Extern Parameters 

Lot Size [Default = 0.1]

Entry Price [Default = 

Slippage [Default = 30 points]

EMA Period [Default = 200]

Entry Price [Default = Market Price. There are to be options: Market Price, Previous Close]

Market Price - Open Trade (buy/sell) once there is a Buy_Entry or Sell_Entry Signal

Previous Close - Buy/Sell at the Bar[1]’s Close price. (This order active for only the time for     next 2 price bars. Then deactivate order if not enter)

 

Take Profit [Default = 150 points]

Stop Loss [Default = Previous Bar High/Low] (Also allow manual setting such as 100points)

Trailing Stop [Default = 50 points (if 0 means no use)]


X = Number of price bars with consecutive lower highs. [Default = 5]

Y = Minimum Range of the X Bars. [Default = 150 points]

For Buy: Bar[5]’s High - Bar[1]’s Low

For Sell: Bar[1]’s High - Bar[5]’s Low


Z = Minimum Distance (pips) from EMA [Default = 200 points]

For Buy: Bar[1]’s High to EMA[1]

For Sell: Bar[1]’s Low to EMA[1]


Active Hours [Timing that this EA will be trading]


Buy_Entry:


Condition 1 “EMA” : Bar[1]’s High must be below EMA[1] and the distance of the Bar[1]’s High to EMA[1] must be greater than or equal to Z.  


Condition 2 “Range” : The range of the bars (Bar[5]’s High - Bar[1]’s Low) must be greater than or equal to Y.


Condition 3 “X Bars” :There is to be X (default = 5) number of price bars that have consecutive lower Highs. 


Once Bar[0]’s current price breaks above Bar[1]’s High, the Buy_Entry is activated. 


The Buy_Entry price is dependent on the Extern Parameter “Entry Price”. If it is “Market Price”, then a Buy is immediately entered. if it is “Previous Close”, then a Buy order at the Bar[1]’s close price is entered. This Buy order will only be valid for the next 2 price bar, if it does not get triggered, then the order is cancelled.  

 

Sell_Entry:


Condition 1 “EMA”: Bar[1]’s Low must be above EMA[1] and the distance of the Bar[1]’s Low to EMA[1] must be greater than or equal to Z.


Condition 2 “Range”: The range of the bars (Bar[1]’s High - Bar[5]’s Low) must be greater than or equal to Y.


Condition 3 “X Bars”: There is to be X (default = 5) number of price bars that have consecutive higher Lows. 


Once Bar[0]’s current price breaks below Bar[1]’s Low, the Sell_Entry is activated. 


The Sell_Entry price is dependent on the Extern Parameter “Entry Price”. If it is “Market Price”, then a Sell is immediately entered. if it is “Previous Close”, then a Sell order at the Bar[1]’s close price is entered. This Sell order will only be valid for the next 2 price bar, if it does not get triggered, then the order is cancelled.  

  

Note:

The Take Profit and Stop Loss is not to be entered when the trade is executed. IT is to be held in the EA as variables and to be monitored at every tick. When the price has been triggered, the EA will execute the Take Profit or Stop Loss for the current trade. This way, the Take Profit and Stop Loss levels will not be known to the broker during entry. 


The 3 conditions for entry should be labelled onto the screen. 

응답함

1
개발자 1
등급
(117)
프로젝트
138
41%
중재
30
7% / 77%
기한 초과
17
12%
무료
2
개발자 2
등급
(2449)
프로젝트
3086
66%
중재
77
48% / 14%
기한 초과
340
11%
로드됨
3
개발자 3
등급
(121)
프로젝트
134
66%
중재
36
25% / 56%
기한 초과
22
16%
무료
4
개발자 4
등급
(219)
프로젝트
405
60%
중재
13
38% / 23%
기한 초과
160
40%
작업중
5
개발자 5
등급
(1)
프로젝트
2
0%
중재
1
0% / 100%
기한 초과
0
무료
6
개발자 6
등급
(221)
프로젝트
369
66%
중재
10
50% / 0%
기한 초과
46
12%
무료
7
개발자 7
등급
(187)
프로젝트
367
56%
중재
45
22% / 56%
기한 초과
188
51%
무료
8
개발자 8
등급
(90)
프로젝트
159
61%
중재
40
18% / 63%
기한 초과
70
44%
무료
9
개발자 9
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
10
개발자 10
등급
(225)
프로젝트
284
42%
중재
15
13% / 47%
기한 초과
67
24%
무료
11
개발자 11
등급
(769)
프로젝트
1033
44%
중재
50
8% / 50%
기한 초과
117
11%
무료
12
개발자 12
등급
(14)
프로젝트
21
48%
중재
1
0% / 0%
기한 초과
4
19%
무료
13
개발자 13
등급
(219)
프로젝트
370
42%
중재
145
17% / 41%
기한 초과
124
34%
무료
비슷한 주문
I have simple EA i want to modify its parameters. If you are good at modifying EAs contact me for more details. I will issue the source code then you return after finishing without changing the buy or sell conditions
the code wasn't mine, i have got it somewhere on the web, but i like the performance of the EA, so i want to use it on mt5 platform. the given code based on price movements with ladder entry concept
* Advanced level dev only, NDA required * Hi, I have a multi timeframe, multiindicator expert that requires additional features added to it. First started development 5 years ago. Upgrading with new features. To be added Entry - Add Stochastic and CCI options for trade entry to be added to existing signal options. Add config options to existing menu Bulk Exit - Master switch for close all trades based on basket
I am developing a master EA that integrates several sub-EAs. The project is complex, and the documentation is thoroughly structured, spanning 50 pages with detailed step-by-step procedures. 1st sub-EA: This EA opens trades without using indicators. Instead, it opens a new trade based on the color or status of the last candle. For instance, if the last candle was green, a new buy trade is opened. 2nd sub-EA: This EA
Good Day I would like to order a trading robot. Pairs: XAUUSD (GOLD) EUR/USD USD/JPY The robot should be trading daily with TP/SL build in, would like to have trailing and stop loss, should execute up to 5 trades (preffarable setting choice) up to 10 trades Los sizes to be choise setting, must also trade major US vews events Like:US- PPI, CPI, NFP, Sales m/m and so on Must also show/display alert when opening
Hello Guys, I need a trading bot for the MT5 to place order based on my trading strategy which is based on - >> entry based on EMA with rejection from specific levels like support and resistance area - levels and time frame i will apply into the robot manually on daily basis. also need - trailing stoploss , shift to breakeven after gaining some points. need a highly expert developer
Trade Manger EA 30+ USD
Hello Programmer! I am looking to build an EA that will place my trade and manage it. Once i have manually found my setup, I will want an EA to open the trade, set the R:R and manage it according to my specifications. please take a look at the attached to get an Idea of what I would like. I will require the source code once completed
Hello there i need someone who will create a robot that will calculate the movement between buy/sell and show where to take profit the robot should work with all currency and indices including stock
EA to send account history to web request. It should send every 5 mins or when there is an update. It then sends the json to a web request where gain, drawdown, balance, equity will be displayed
I have a full strategy based on indicator and candle based on . i would like to make it into a robot which will trade for me on a specific time and specific rules. i need a person who can do this project for me. If you have done this type of job . you are most welcome for this. Apply only if you know binary trading option and binomo trading platform well and how it works

프로젝트 정보

예산
30 - 50 USD
개발자에게
27 - 45 USD
기한
에서 2  10 일