An MT4 expert advisor based on candle, Hull MA and stochastic

MQL5 Esperti

Specifiche

The 1HSM EA allows users to configure trade settings, including activation, trading session, trade timing, maximum simultaneous trades, and stop loss type (virtual or visible). Users can set breakeven parameters, slippage control, and profit trailing options (gap, block, or target). Reverse trading can be enabled, allowing trades in the opposite direction if the price reverses significantly. Specific conditions for opening buy or sell trades are based on the crossover of LHMA and HHMA, confirmed by stochastic signals. Additional rules apply for managing simultaneous trades, stop loss movement, and carried forward trades.

The Multi-Directional Candle (MDC) automation is an Expert Advisor that allows trades based on the previous candle's color or price movements exceeding defined limits. It supports both single and multi-direction trading scenarios. Users can customize trading sessions, stop loss options (visible or virtual), maximum trades per candle, and profit trailing methods. The EA ensures effective trade execution with spread, breakeven, and slippage control, while maintaining unique identifiers for each trade. Rules are defined to handle profit-taking, loss recovery, and multiple trades within a single candle, supporting efficient automated trading.


I have written a 50 pages documents detailing all processes, execution and closing trade. I will give you the write up at laster stage for you to evalute and finalise the budget and delivery time.

Con risposta

1
Sviluppatore 1
Valutazioni
(75)
Progetti
127
53%
Arbitraggio
5
20% / 60%
In ritardo
20
16%
In elaborazione
2
Sviluppatore 2
Valutazioni
(2105)
Progetti
2676
62%
Arbitraggio
114
46% / 25%
In ritardo
420
16%
Caricato
3
Sviluppatore 3
Valutazioni
(37)
Progetti
60
33%
Arbitraggio
4
25% / 50%
In ritardo
6
10%
Occupato
4
Sviluppatore 4
Valutazioni
(2442)
Progetti
3079
66%
Arbitraggio
77
48% / 14%
In ritardo
340
11%
In elaborazione
5
Sviluppatore 5
Valutazioni
(7)
Progetti
9
0%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
6
Sviluppatore 6
Valutazioni
(28)
Progetti
35
14%
Arbitraggio
6
33% / 50%
In ritardo
5
14%
Gratuito
7
Sviluppatore 7
Valutazioni
(564)
Progetti
933
47%
Arbitraggio
302
59% / 25%
In ritardo
125
13%
Caricato
8
Sviluppatore 8
Valutazioni
(489)
Progetti
558
33%
Arbitraggio
27
44% / 44%
In ritardo
8
1%
Caricato
9
Sviluppatore 9
Valutazioni
(9)
Progetti
8
38%
Arbitraggio
4
0% / 50%
In ritardo
2
25%
In elaborazione
10
Sviluppatore 10
Valutazioni
(7)
Progetti
7
0%
Arbitraggio
0
In ritardo
1
14%
In elaborazione
11
Sviluppatore 11
Valutazioni
(257)
Progetti
341
58%
Arbitraggio
7
14% / 71%
In ritardo
9
3%
Gratuito
12
Sviluppatore 12
Valutazioni
(357)
Progetti
563
33%
Arbitraggio
24
67% / 8%
In ritardo
17
3%
Gratuito
13
Sviluppatore 13
Valutazioni
(171)
Progetti
194
11%
Arbitraggio
37
38% / 35%
In ritardo
5
3%
Caricato
14
Sviluppatore 14
Valutazioni
(215)
Progetti
348
16%
Arbitraggio
22
41% / 32%
In ritardo
18
5%
Occupato
15
Sviluppatore 15
Valutazioni
(132)
Progetti
176
39%
Arbitraggio
4
25% / 50%
In ritardo
14
8%
Gratuito
16
Sviluppatore 16
Valutazioni
(5)
Progetti
2
0%
Arbitraggio
3
0% / 100%
In ritardo
0
In elaborazione
17
Sviluppatore 17
Valutazioni
(97)
Progetti
110
36%
Arbitraggio
3
0% / 0%
In ritardo
4
4%
Caricato
18
Sviluppatore 18
Valutazioni
(145)
Progetti
258
35%
Arbitraggio
12
25% / 58%
In ritardo
42
16%
Gratuito
19
Sviluppatore 19
Valutazioni
(13)
Progetti
17
12%
Arbitraggio
7
14% / 57%
In ritardo
4
24%
Gratuito
20
Sviluppatore 20
Valutazioni
(158)
Progetti
175
43%
Arbitraggio
6
0% / 67%
In ritardo
8
5%
Gratuito
Ordini simili
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 11:00:00. - Long Entry
EA gold HB king5 100+ USD
// เริ่มต้นโปรแกรม EA input double LotSize = 0.1; // ขนาดของล็อต input double TakeProfit = 50; // จุดกำไร input double StopLoss = 50; // จุดขาดทุน // ฟังก์ชันที่เรียกเมื่อมีการสั่งซื้อ void OnTick() { double MA = iMA(NULL, 0, 14, 0, MODE_SMA, PRICE_CLOSE, 0); // Simple Moving Average (SMA) 14 double Price = Bid; if(Price > MA) // เงื่อนไขสำหรับการซื้อ { if(OrderSelect(0, SELECT_BY_POS) == false) //
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 11:00:00. - Long Entry
I need an EA coded according to the given instructions. The codeR will also have to put the logic of the indicator inside the EA. The EA will have to check certain filters or condition before the entry of trades. Only bid if you can work within the indicated budget
Variable Inputs to be added Order Type : Market , Pending Trade Type : Buy, Sell , Buy & Sell Pending Pips Step : ( Pips Value can be negative or positive to decide on what type of Pending Order ) // If trade type Buy is selected Close Type : Close All ( Bulk Close Option in MT5 ) , Close Individually Close Option : %of Equity , %of Balance , Amount $ , %of No: of Trades Close Type : Buy Only , Sell Only , Buy & Sell
SMAFS MIDDLE CROSS 50 - 100 USD
SMART-MONEY CONCEPT (LUX ALGO AND SMAFS(LOXX) 80 20 MIDDLE CROSS. (TRADING VIEW INDICATOR) EXPERT ADVISOR I want EA that use the smart-money concept to determine whether to buy and sell with SMAFS as the second indicator CONDITION TO BUY AND SELL. When SMAFS is above the middle cross(green) you buy When SMAFS is below the middle cross (red) you sell. The time frame is 1hr PROFIT AND LOSS. It should be fixed pips with
I need the service of programmer that can correct an existing EA code and turn it to a running Robot/EA. My code current has about 85 lines of coding mql5 coding errors
hello there I need a copy trade for mt4 can ANYONE help me with and let discuss on how to go about it kindly send me message to signify and let discuss mind you i need this urgently let connect to discuss and conclude
Below is the pine eidtor script convert it to MQL5 coding language and create bot based on following condition 1. This all should be on 5-minute chart timeframe 2. For Buy side, buy after closing of second candle when buy signal is given and hold buy position until sell signal is given. 3. For sell side, sell after closing of second candle when sell signal is given and hold sell position until next buy signal will be
Araz s job 90+ USD
sorry this job is only for araz, i need him for this job so don't apply because i cant take another developer now, i hope you understand, thank you for your collaboration

Informazioni sul progetto

Budget
750 - 1000 USD
Scadenze
da 5 a 10 giorno(i)

Cliente

Ordini effettuati1
Numero di arbitraggi0