EA based on New York Previous Day High/Low

MQL4 Uzman Danışmanlar

İş Gereklilikleri

EA based on New York Previous Day High/Low, suitable for backtesting:

- To work on any timeframe. Will probably be used between 5-15 minutes.

- Firstly it must get server time, and convert to New York time, and take into account Daylight Savings Time. Do not use Local computer time to do the conversion, as I want to be able to backtest this, so you must do the conversion based off of server time. I suggest you use this:

https://www.mql5.com/en/articles/9926

https://www.mql5.com/en/articles/9929

- Look at the previous day New York Session between 9.30am and 4pm. I might want to change these times in future, so these should be configuarable. Find the Max/Min High Low of the candles and also a 20SMA and 200SMA from within this time period. Take the high lows of these 4 items (high low of candles, high low of 20 SMA, and high low of 200 SMA). From these Items create a high low box, and project/draw it onto the next day session.

- Once the Next Day session starts (opening candle at 9.30am), check if the open of the opening candle was above or below the high and the low.

- If it opened above the high take a long. If below the low take a short. You should enter above or below the high/low of the opening candle, and you should also add a small distance to the entry of say 1 tick. (this additional entry amount should be a variable input that we can customize).

- Also add an optional filter that only takes the trade if the opening candle was in the direction of the trade. So for exaaple, the opening candle opens above the high of the previous days data, so we want to go long at the high of the opening candle (+ 1 tick). Only take the trade if the opening candle is bullish. This directional confirmaiton filter we should be able to switch on and off.

- I want the Stop size to be configurable input by ticks...so for example 4 ticks

- Max percent risk should be configurable to. For example 1% of equity

- Risk to reward should be configurable, for example 3 RR, and the TP target price calculated based off of that.
- Slippage should be configurable - for example 3 ticks.
- For risk management I want the option to move the Stop to a given RR, omce reahcing a give RR. So for example, once we reach 0 RR move Stop loss to -0.5 RR.
- No pyramiding. Only 1 position at a time. 
- Configurable starting equity balance (e.g $1000)
- I want to backtest this with Tick Data, so please take this into account when building the EA, so that this is possible.
- I would like this to visually plot on the chart the High Low of the previous range, and then also an visible indicaiton of trades taken, with entry, stop and TP levels on the chart.


Yanıtlandı

1
Geliştirici 1
Derecelendirme
(171)
Projeler
194
11%
Arabuluculuk
37
38% / 35%
Süresi dolmuş
5
3%
Yüklendi
2
Geliştirici 2
Derecelendirme
(94)
Projeler
112
33%
Arabuluculuk
5
40% / 20%
Süresi dolmuş
5
4%
Serbest
3
Geliştirici 3
Derecelendirme
(362)
Projeler
506
40%
Arabuluculuk
147
18% / 72%
Süresi dolmuş
99
20%
Yüklendi
4
Geliştirici 4
Derecelendirme
(135)
Projeler
193
42%
Arabuluculuk
17
29% / 59%
Süresi dolmuş
28
15%
Serbest
5
Geliştirici 5
Derecelendirme
(378)
Projeler
401
31%
Arabuluculuk
63
19% / 70%
Süresi dolmuş
51
13%
Yüklendi
6
Geliştirici 6
Derecelendirme
(72)
Projeler
80
10%
Arabuluculuk
36
8% / 53%
Süresi dolmuş
6
8%
Çalışıyor
7
Geliştirici 7
Derecelendirme
(49)
Projeler
57
51%
Arabuluculuk
1
0% / 100%
Süresi dolmuş
1
2%
Çalışıyor
8
Geliştirici 8
Derecelendirme
(15)
Projeler
18
39%
Arabuluculuk
2
50% / 50%
Süresi dolmuş
0
Serbest
9
Geliştirici 9
Derecelendirme
(481)
Projeler
510
53%
Arabuluculuk
10
60% / 20%
Süresi dolmuş
3
1%
Serbest
10
Geliştirici 10
Derecelendirme
(131)
Projeler
173
39%
Arabuluculuk
4
25% / 50%
Süresi dolmuş
13
8%
Çalışıyor
11
Geliştirici 11
Derecelendirme
(6)
Projeler
6
33%
Arabuluculuk
3
0% / 100%
Süresi dolmuş
0
Çalışıyor
Benzer siparişler
Zzz 30+ USD
// กำหนดค่าตัวแปรพื้นฐาน input double lotSize = 0.1; // ขนาดล็อตที่ต้องการ input int takeProfit = 50; // ระยะ Take Profit (จุด) input int stopLoss = 50; // ระยะ Stop Loss (จุด) input int magicNumber = 123456; // หมายเลข Magic Number input int smaPeriod = 14; // ช่วงเวลา Simple Moving Average (SMA) // เวลาที่ออเดอร์ล่าสุดถูกเปิด datetime lastOrderTime = 0; // ฟังก์ชั่นหลักของ EA void OnTick() { //
Mobile robot 50 - 100 USD
I want a profitable scalping EA robot for mt5 and mobile phones (licence key should be provided).the video link attached below indicates how the EA robot should operate it.it analyses the market before taking trades and it trades candle to candle .also coding samples are provided on the video .it should be applicable to all timeframes.it should trade indices(Nas100,US30,S&p500,GER30,)
I use the translator I hope to make myself understood. I'm looking for a cyclical indicator. mt5. I attach videos to understand how it works. to be inserted at any point of the graph. It is possible to change the color and thickness of the line
This EA must have the following functions together: BE: place BE when the price reach a certain gain in PIPS and you can choose the offset too, so, for example it activates after 10 pips with 1 pip of offset so you can have profit with BE too Auto SL and TP Can manage the trades made by phone when MT5 is open in the PC or VPS Trailing stop (step by step): I can decide at what number of pips the trailing stop get
This is a strategy based on crossing two trend indicators on the second timeframe (1s, for example). We work not only with the market but with the limit orders as well (robot must "read" an order book). Read the whole instruction please for more details. Speak Russian, English
Martingale EA for MT5 30 - 100 USD
Criteria: Only one trade at a time. Cannot open another trade if one is running Trade on EURUSD only, once job is completed I will be happy to schedule more for other pairs You choose entry strategy and criteria win rate must be above 50% in long term backtest of EURUSD Every trade has got TP and SL Trades to last about a day, few trades a week, at least 10 pips gain per trade, so that it can be launched on normal
I have a indicator, mql file. The signals are seen below on a EURNZD H1 chart. Very important to get accurate entries. The signal to trade is the first tic after the the indicator signal paints. I've tried to demonstrate that below. Other than that the EA will have a lot size escalation, an on-screen pip counter, a button to stop taking new trades, SL/TP, and magic number. I would like the indicator to be within the
I would like to create an EA based on the Shved Supply and Demand indicator. you can find the Shved Supply and Demand v1.7 indicator in the following link https://www.mql5.com/en/code/29395 NB: Checks the trading robot must pass before publication in the Market ( https://www.mql5.com/en/articles/2555 ) MQ5 file to be provided
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market

Proje bilgisi

Bütçe
100+ USD
Geliştirici için
90 USD