EA Based on Defined Price Range Within Defined Time of Day Range Using Standard Deviations of Price Range For Entry, Stop & Take Profit

MQL5 Эксперты

Работа завершена

Время выполнения 185 дней

Техническое задание

1. The idea of the strategy is as follows: Custom timeframe inputs used to create a defined range in price based on High/Low of price within the range and a secondary range based on highest and lowest body close of candles within the range  (It would also need to display this range on the chart for visual purposes)

2. Once the defined time range finishes the EA would look for a candle close beyond either the low or high of the range (whichever comes first)

3. If broken and closed to the high for example the EA would only take trades that retrace back into the range and this would be based on standard deviation retracements of the inner range and a limit order set

4. Stops would be based on a standard deviation inputs within the range

4. Targets would have 2 input fields so I can optimise based on an R multiple from stop or a standard deviation extension

5. Time input to define when the EA can no longer take trades for the day

6. Day of the week filter so I can switch on what days it runs

7. Input to define if price moves away a certain standard deviation it would no longer look for trades

Here is an example of what a trade would look like and how I'd like the range to be displayed:

Defining Range EA

This is a trading concept based on TheMas7er youtube channel and a walkthrough can be found here:  (10) 🔥 TOP SECRET TRADING STRATEGY REVEALED 💰 88 % PROBABILITY - YouTube

There have also been other developers create an MT5 indicator for this here:  Buy the 'DR IDR Pro' Technical Indicator for MetaTrader 5 in MetaTrader Market (mql5.com)

I'd now like this concept built into an EA with all inputs left customisable so I can optimise as best as possible.

Here are the input fields I'd like included but please add in anything else required or not thought of:


=====GENERAL====

Magic Number

====DEFINING RANGE TIMINGS===

Range Start Time (Value)

Range End Time (Value)

Stop Taking Trades Time (Value)

====DAY OF WEEK FOR TAKING TRADES====

Mon (false/true)

Tue (false/true)

Wed (false/true)

Thu (false/true)

Fri (false/true)

====ENTRY====

Standard Deviation Retracement Level (Value)

====STOP=====

Standard Deviation Retracement Level (Value)

====STOP TO BREAKEVEN====

Use Standard Deviation Extension Level (false/true)

Standard Deviation Extension Level (Value)

===TARGET====

Use Standard Deviation Extension Level (false/true)

Standard Deviation Extension Level (Value)

Use R Multiple Based on stop size (false/true)

R Multiple Based on stop size (Value)

====NO TRADE ZONE===

Use Standard Deviation Extension Level (If price reaches this level before entering a trade, no trading will take place for that day) (false/true)

Standard Deviation Extension Level (Value)

====RISK SETTINGS====

% Balance Risked (Value)

Откликнулись

1
Разработчик 1
Оценка
(8)
Проекты
11
0%
Арбитраж
11
18% / 73%
Просрочено
2
18%
Свободен
2
Разработчик 2
Оценка
(8)
Проекты
9
22%
Арбитраж
0
Просрочено
0
Свободен
3
Разработчик 3
Оценка
(75)
Проекты
124
44%
Арбитраж
14
29% / 50%
Просрочено
17
14%
Свободен
4
Разработчик 4
Оценка
(116)
Проекты
137
36%
Арбитраж
16
13% / 69%
Просрочено
9
7%
Свободен
5
Разработчик 5
Оценка
(16)
Проекты
35
23%
Арбитраж
4
0% / 50%
Просрочено
2
6%
Работает
6
Разработчик 6
Оценка
(72)
Проекты
80
10%
Арбитраж
38
8% / 58%
Просрочено
6
8%
Свободен
7
Разработчик 7
Оценка
(322)
Проекты
499
67%
Арбитраж
5
40% / 0%
Просрочено
4
1%
Свободен
Опубликовал: 8 примеров
8
Разработчик 8
Оценка
(574)
Проекты
945
47%
Арбитраж
309
58% / 27%
Просрочено
125
13%
Свободен
Похожие заказы
Looking to acquire an existing, profitable Expert Advisor (EA) with full source code to add to our client investment portfolio. To be clear, this is not a request to develop or design a new strategy. If you already have an EA that is proven, consistent, and production-ready, with at least 6 months of history performance I’m open to reviewing it immediately. Please apply only if you meet all the requirements below
Need a quarantine winning bot to trade step100, vix 75,25,50 and 30. Serious persons only. Minimum to no lost. Should’ve able to trade secondly rapidly and daily . Should only enter winning trades
Please help add an alert notification feature to this indicator so I can receive a notification immediately whenever a signal appears. Thanks. Just help to put an alert notification at appearance of the signal on this indicator
Hello, I am a serious buyer looking to acquire an existing, stable, and profitable Expert Advisor (EA) designed specifically for: 👉 Gold (XAUUSD) This is a full buyout request, including complete source code and full ownership. ⚠️ I am NOT looking to build a new EA from scratch. Only ready-made, proven systems with real performance history. ✅ EA Requirements (Strict) 📌 Symbol & Strategy ✔️ Trades Gold only (XAUUSD)
I need a professional MT5 Expert Advisor (fully automated trading robot) for scalping on M1 timeframe. 1. General Requirements Platform: MetaTrader 5 Type: Fully automated EA (no manual confirmation) Timeframe: M1 only Symbols: XAUUSD, BTCUSD, USDCAD Must support running on multiple charts simultaneously Clean, optimized, and low-latency execution logic 2. Strategy Logic (Scalping Model) The EA should use: Trend +
Hello, I am looking for someone who can convert this indicator (BrainTrend2SigAlert - indicator for MetaTrader 5) into an Expert Advisor (robot). Buy positions and sell positions. And with the option to set Take Profit in percent or pips. And the setting for the maximum number of buy or sell positions
The indicator a bit inverted. But it doesn’t matter to me as long as the winrate make sense for investment. For brief details regarding the indicator. What should have been a sell, i inverted it into buy with sl and tp swapped(only change the name of sl and tp for visualisation , but the code still on right tp and sl) . And in script ive inverted the signal command code. But the trouble is the tp and sl cant be
All other Necessary filters already coded , Mostly it is referring to another expert copy pasting . Live Chart Optimization . Optimization from Signal Trigger Point . Apply to stay ahead . While applying please explain the correct trailing stop loss for value gap entries
Patrick 30 - 200 USD
//+------------------------------------------------------------------+ //| EURUSD Daily Strategy EA | //+------------------------------------------------------------------+ extern int MA_Fast = 50; extern int MA_Slow = 200; extern int RSI_Period = 14; extern double RiskReward = 2.0; extern double StopLossMultiplier = 1.5; void OnTick() { if (TimeCurrent() != iTime(NULL, PERIOD_D1, 0)) return;
G5 30 - 40 USD
1. CSI module — parses the group syntax, ranks 8 currencies, returns BUY/SELL/NEUTRAL 2. Tradovate bridge — file-based reader for the 8 Tradovate conditions (local + remote support) 3. Tradovate confluence indicator — 9 buffers + score + entry/exit signal 4. Integration into your EA

Информация о проекте

Бюджет
50 - 150 USD