EA for use on MT5, simple strategy based on the High and Low of candles

指定

Hi, I need to make an EA for use on MT5, on a simple strategy based on the High and Low of candles. Below is the strategy where I should be able to change the variables (number of candles, candle frequency, hours, multiplier, etc):


Entry Long

--------------------

Open Position = 0

AND

CMP > Highest High of last 5 candles

--------------------


Exit Long

--------------------

Time > Entry Time + 5 hours

AND

CMP < Lowest Low of last 5 candles

--------------------

OR

--------------------

Time < Entry Time + 5 hours

AND

CMP < Lowest Low of last 5 candles

AND

CMP < Entry Price * 0.99

--------------------
OR
--------------------

Time < Entry Time + 5 hours

AND

CMP < Lowest Low of last 5 candles

AND

CMP > Entry Price

--------------------

 

Entry Short

--------------------

Open Position = 0

AND

CMP < Lowest Low of last 5 candles

--------------------


Exit Short

--------------------

Time > Entry Time + 5 hours

AND

CMP > Highest High of last 5 candles

--------------------

OR

--------------------

Time < Entry Time + 5 hours

AND

CMP > Highest High of last 5 candles

AND

CMP > Entry Price * 1.01

--------------------
OR
--------------------

Time < Entry Time + 5 hours

AND

CMP > Highest High of last 5 candles

AND

CMP < Entry Price

--------------------


At any point, only one of the two (Long or Short) entries should be active. 


応答済み

1
開発者 1
評価
(161)
プロジェクト
191
26%
仲裁
8
25% / 38%
期限切れ
5
3%
多忙
2
開発者 2
評価
(9)
プロジェクト
12
25%
仲裁
0
期限切れ
1
8%
3
開発者 3
評価
(5)
プロジェクト
6
50%
仲裁
0
期限切れ
0
仕事中
4
開発者 4
評価
(319)
プロジェクト
404
21%
仲裁
44
61% / 23%
期限切れ
46
11%
仕事中
5
開発者 5
評価
(215)
プロジェクト
348
16%
仲裁
22
41% / 32%
期限切れ
18
5%
多忙
6
開発者 6
評価
(32)
プロジェクト
38
32%
仲裁
0
期限切れ
2
5%
7
開発者 7
評価
(2443)
プロジェクト
3080
66%
仲裁
77
48% / 14%
期限切れ
340
11%
8
開発者 8
評価
(2105)
プロジェクト
2676
62%
仲裁
114
46% / 25%
期限切れ
420
16%
取り込み中
9
開発者 9
評価
(103)
プロジェクト
130
44%
仲裁
7
43% / 43%
期限切れ
7
5%
10
開発者 10
評価
(19)
プロジェクト
23
48%
仲裁
4
0% / 100%
期限切れ
2
9%
仕事中
11
開発者 11
評価
(39)
プロジェクト
45
29%
仲裁
4
25% / 25%
期限切れ
0
12
開発者 12
評価
(6)
プロジェクト
6
33%
仲裁
3
0% / 100%
期限切れ
0
仕事中
13
開発者 13
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
14
開発者 14
評価
(9)
プロジェクト
13
23%
仲裁
1
0% / 0%
期限切れ
0
15
開発者 15
評価
(97)
プロジェクト
110
36%
仲裁
3
0% / 0%
期限切れ
4
4%
取り込み中
16
開発者 16
評価
(28)
プロジェクト
35
14%
仲裁
6
33% / 50%
期限切れ
5
14%
17
開発者 17
評価
(1100)
プロジェクト
1782
61%
仲裁
14
64% / 7%
期限切れ
84
5%
18
開発者 18
評価
(141)
プロジェクト
207
80%
仲裁
18
33% / 44%
期限切れ
10
5%
仕事中
19
開発者 19
評価
(261)
プロジェクト
426
38%
仲裁
86
44% / 19%
期限切れ
71
17%
取り込み中
20
開発者 20
評価
(249)
プロジェクト
446
34%
仲裁
56
36% / 38%
期限切れ
164
37%
取り込み中
21
開発者 21
評価
(63)
プロジェクト
195
73%
仲裁
4
100% / 0%
期限切れ
1
1%
22
開発者 22
評価
(9)
プロジェクト
8
38%
仲裁
4
0% / 50%
期限切れ
2
25%
仕事中
23
開発者 23
評価
(267)
プロジェクト
542
50%
仲裁
55
40% / 36%
期限切れ
225
42%
仕事中
24
開発者 24
評価
(37)
プロジェクト
45
33%
仲裁
6
17% / 33%
期限切れ
8
18%
仕事中
類似した注文
My strategy I’m looking to turn into code. Trading Instrument - Crude Oil Futures (CL) Chart and Timeframe - 30-second chart Entry Setup 1. Time Focus on the first 30-second candle after 11:00: 00 AM New York time. (11:00: 00 candle) 2. Candle Size Limit : Skip the trade if the first candle is greater than 10 points. 3. Entry Orders - Place stop orders at the high and low of the first 30-second candle after
I need to create an EA based on my own strategy that actually is a little bit different from most of the usual EA. This because it use an indicator but the power of the system is just because it can shows target price by designing trendline on the price chart in a unusual way. A friend of mine tried to create it on MT4 platform but, in the end, he realized that this platform has big limits when the program lines
This is a 2000 lines own-made breakout EA that I need to have cleanly converted from mql4 to mql5 for learning purposes The start() is about 400 lines long ; basic breakout with specific features , built for Index CFDs with 2 digits (typically DAX or SP500; TP SL... are expressed in actual Points) The Ontester() is about 400 lines (contains 58 different custom opimizations) The Deinit() is about 150 lines The
Hey there! I’m looking for a talented NinjaTrader programmer to partner with on some exciting projects. If you have a knack for NinjaScript and a passion for trading tech, let’s team up! What You Can Expect: A friendly collaboration on diverse projects Fair pay—50/50 split on all earnings An opportunity to dive deep into innovative trading strategies What I’m Hoping You Bring: Experience with NinjaTrader and
For starters, I am looking for someone to explain the effect of the Israel vs Iran conflict on trading. Secondly, I am looking for experienced MQL5 developer to improve an existing Expert Advisor. The goal is to optimize performance, reduce drawdown, and increase profitability. Tasks include refining the current logic for trade entries and exits, enhancing risk management, and ensuring the EA performs
On an existing open-sourced grid EA (.mq4), I need a developer adding new simple functionalities: - Include "fixed lots" instead of existing “entry lots through risk %” - Include standard news filter (time before/after, impact, currencies, close all open orders or not) - Include closure at a fixed drawdown - Include opening of hedge order in the opposite direction to balance open
Hallo zusammen, es wird ein Entwickler für einen eigenen Expert Advisors gesucht. Der Expert Advisor soll anhand von zwei miteinander kombinierbaren Indikatoren (Relative Stärke inkl. Gleitender Durchschnitte und dem Supertrend-Indikator) Einstiegssignale in Long und Shortrichtung für alle möglichen Underlyings suchen. Hierbei soll bei einem initialen Einstieg zusätzlich in einem zeitlichen Abstand und gemäß
I'm looking for an MQL5 expert to develop a trading EA that uses the ratio of candle wicks to body sizes to automatically enter and exit trades. Key features should include: - Autopilot function: The EA should handle trade entries without manual intervention. Trade exits are only by hitting trailing SL. - Trade criteria: Trades should only be placed based on specific, pre-defined ratios of candle wicks to body sizes
I would to develop a trading bot with some confluences I use TradeLocker Settings must be adjustable…… I am based in uk and very keen to move my strategy to trade automatically 1. Market Structure Break And Order block. By EmreKb 2. Rainbow Adaptive RSI By LuxAlgo 3. Multiple Moving Average using only 1 indicator By Myfye13 4. Average True Range Trailing Stops By HPotter we have to combine this four indicator into a
Convert my tradingview pine script to mt4, Its a simple and straight code i need an expert programmer to convert my tradingview pine script to mt4, Thats All Thank you

プロジェクト情報

予算
30 - 75 USD
開発者用
27 - 67.5 USD