A quick little job about OrderCloseTime() in my EA.

Lavoro terminato

Tempo di esecuzione 2 minuti
Feedback del cliente
Lakshan is very helpful and patient programmer, I would recommend.

Specifiche

In my EA i have a block of code within the OnTick area and I need it to only run when a trade closes, instead of every tick. Currently I am using OrderCloseTime() and can get a new number when a trade closes, but as said the code block is running every tick, but it only needs to run once, when a trade closes. I think the bit of code I have is close to how to do it, but the logic of exactly how to do it escapes me so a little help is appreciated. Thanks for looking.


Con risposta

1
Sviluppatore 1
Valutazioni
(188)
Progetti
212
58%
Arbitraggio
9
11% / 89%
In ritardo
8
4%
Gratuito
2
Sviluppatore 2
Valutazioni
(769)
Progetti
1033
44%
Arbitraggio
50
8% / 50%
In ritardo
117
11%
Gratuito
3
Sviluppatore 3
Valutazioni
(53)
Progetti
74
26%
Arbitraggio
30
10% / 63%
In ritardo
22
30%
Gratuito
4
Sviluppatore 4
Valutazioni
(647)
Progetti
1295
67%
Arbitraggio
84
26% / 49%
In ritardo
338
26%
Gratuito
5
Sviluppatore 5
Valutazioni
(50)
Progetti
80
39%
Arbitraggio
4
50% / 25%
In ritardo
0
Gratuito
6
Sviluppatore 6
Valutazioni
(117)
Progetti
138
41%
Arbitraggio
30
7% / 77%
In ritardo
17
12%
Gratuito
7
Sviluppatore 7
Valutazioni
(1133)
Progetti
1436
62%
Arbitraggio
21
57% / 10%
In ritardo
43
3%
Gratuito
8
Sviluppatore 8
Valutazioni
(564)
Progetti
933
47%
Arbitraggio
302
59% / 25%
In ritardo
125
13%
Caricato
9
Sviluppatore 9
Valutazioni
(204)
Progetti
209
28%
Arbitraggio
0
In ritardo
3
1%
Gratuito
10
Sviluppatore 10
Valutazioni
(130)
Progetti
184
32%
Arbitraggio
16
31% / 63%
In ritardo
27
15%
Gratuito
11
Sviluppatore 11
Valutazioni
(22)
Progetti
114
98%
Arbitraggio
4
0% / 75%
In ritardo
35
31%
Gratuito
12
Sviluppatore 12
Valutazioni
(213)
Progetti
246
45%
Arbitraggio
42
10% / 57%
In ritardo
5
2%
Gratuito
13
Sviluppatore 13
Valutazioni
(17)
Progetti
24
33%
Arbitraggio
5
20% / 40%
In ritardo
8
33%
Gratuito
14
Sviluppatore 14
Valutazioni
(4)
Progetti
4
75%
Arbitraggio
1
0% / 0%
In ritardo
0
Gratuito
15
Sviluppatore 15
Valutazioni
(66)
Progetti
143
34%
Arbitraggio
10
10% / 60%
In ritardo
26
18%
Gratuito
16
Sviluppatore 16
Valutazioni
(586)
Progetti
1048
49%
Arbitraggio
39
28% / 41%
In ritardo
49
5%
In elaborazione
Ordini simili
BAR STRADDLE EA 60 - 100 USD
Hello Coding Wizards. I need an EA that places pending buy above / sell below orders on a specific bar as it closes. Stop loss orders for both pending orders are on opposite ends of the bar. It needs to have fast execution speed with functions as follows; Position size based on X % risk of account balance. Works on whatever chart the EA is active on. Identification of "Primary Bar" based on server time entered
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
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
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
I would like the better volume indicator 1.6 in a scanner format. Scanning multiple timeframe and pairs of which can be picked. Would like it to provide all standard notifications and also if pressed to go to the a template timeframe and pair. *To be placed in a table format as the one added. To be able to add which time frame you want to see. *To advise me of the following Climax High - turn the text green High
i have a JavaScript of a code which is a indicator of trading view, i want to convert into python script and make a mql5 automated trading bot which can take automatic trade and also exit when the signals come by the indicator
Here's the bot's trading strategy in a nutshell>>> I would like to make a simple scalping MT5 EA trading bot for the synthetic indices, specifically for the Boom 1000 Index. This MT5 EA trading bot will be based off of the 10 period moving average that follows specific rules for entry. The parameters of the moving average are as follows: Period:10 Shift:1 Method:Linear Weight Apply to:Close The bot will only initiate
I would like an existing, older MT4 EA I had developed converted into an MT5 EA and debugged where necessary. The EA is attached and should be fairly self-explanatory. It is a breakout order entry EA with customisable parameters

Informazioni sul progetto

Budget
30+ USD
Per lo sviluppatore
27 USD
Scadenze
da 1 a 3 giorno(i)