Need a EA to taken trade on the given parameters.

Termos de Referência

Need a EA to taken trade on the given parameters for forex market.


1. Open price of Current Day .

2. Low Price of Current Day .

3. High Price of Current Day .

this should be shown as bold Text

order should be triggered at open price.


if the price crosses above open ( there should a range to be select ex. 1pip or 2pips editable ) then it should a take a buy order with sl & tp which can edited later on.

if the price crosses below ( there should a range to be select ex. 1pip or 2pips) open price it should take a sell trade.

also need a editable option to change lot size and TP SL.

ex. if the USDJPY current price means " Last Traded Price of Current Day" is 140 and the Open Price of Current Day is 142, when the then the Last Traded Price of Current Day crossover 142 i want the ea to the take a buy trade, if the Open Price of Current Day is 139 when the  Last Traded Price of Current Day goes below 139 i want the ea take a sell trade. 



Respondido

1
Desenvolvedor 1
Classificação
(161)
Projetos
175
33%
Arbitragem
6
50% / 50%
Expirado
2
1%
Carregado
2
Desenvolvedor 2
Classificação
(326)
Projetos
354
52%
Arbitragem
5
80% / 20%
Expirado
1
0%
Trabalhando
3
Desenvolvedor 3
Classificação
(53)
Projetos
63
6%
Arbitragem
24
21% / 38%
Expirado
4
6%
Trabalhando
4
Desenvolvedor 4
Classificação
(176)
Projetos
236
45%
Arbitragem
17
82% / 12%
Expirado
35
15%
Trabalhando
5
Desenvolvedor 5
Classificação
(339)
Projetos
457
52%
Arbitragem
22
50% / 27%
Expirado
5
1%
Carregado
6
Desenvolvedor 6
Classificação
(37)
Projetos
51
43%
Arbitragem
2
100% / 0%
Expirado
9
18%
Livre
7
Desenvolvedor 7
Classificação
(50)
Projetos
71
15%
Arbitragem
2
50% / 0%
Expirado
7
10%
Carregado
8
Desenvolvedor 8
Classificação
(37)
Projetos
59
27%
Arbitragem
25
20% / 52%
Expirado
10
17%
Trabalhando
9
Desenvolvedor 9
Classificação
(22)
Projetos
28
11%
Arbitragem
6
33% / 50%
Expirado
4
14%
Carregado
10
Desenvolvedor 10
Classificação
(28)
Projetos
34
15%
Arbitragem
5
40% / 60%
Expirado
5
15%
Livre
11
Desenvolvedor 11
Classificação
(37)
Projetos
42
29%
Arbitragem
4
25% / 25%
Expirado
0
Trabalhando
12
Desenvolvedor 12
Classificação
(549)
Projetos
1331
59%
Arbitragem
28
82% / 0%
Expirado
10
1%
Livre
13
Desenvolvedor 13
Classificação
(3)
Projetos
4
0%
Arbitragem
2
0% / 100%
Expirado
1
25%
Livre
14
Desenvolvedor 14
Classificação
(1093)
Projetos
1773
61%
Arbitragem
14
64% / 7%
Expirado
84
5%
Trabalhando
15
Desenvolvedor 15
Classificação
(365)
Projetos
393
70%
Arbitragem
3
100% / 0%
Expirado
2
1%
Trabalhando
16
Desenvolvedor 16
Classificação
(140)
Projetos
204
80%
Arbitragem
17
29% / 47%
Expirado
10
5%
Trabalhando
17
Desenvolvedor 17
Classificação
(91)
Projetos
113
36%
Arbitragem
8
88% / 0%
Expirado
0
Trabalhando
18
Desenvolvedor 18
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
19
Desenvolvedor 19
Classificação
(41)
Projetos
54
4%
Arbitragem
5
0% / 60%
Expirado
4
7%
Livre
20
Desenvolvedor 20
Classificação
(568)
Projetos
641
41%
Arbitragem
21
57% / 29%
Expirado
47
7%
Trabalhando
21
Desenvolvedor 21
Classificação
(455)
Projetos
515
33%
Arbitragem
26
38% / 46%
Expirado
7
1%
Carregado
22
Desenvolvedor 22
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
Pedidos semelhantes
hi. I hv a strategy on tradingview need to convert to MT4/MT5 expert advisor for algo trading. would like to add some tradingview strategy setting to the EA(not included in my tradingview code): recalculate after order is filled, order size: xx% of equity
I believe in Robotics as a major artificial intellect to function of growth of business.Therefore if you script there is a likelihood of bringing economies of scale.The retrospective of the dynamics of indulgence of work can be economics of scale
// @version= 5 strategy ( "EMA Crossover Strategy with 1:1.6 Risk-Reward" , overlay = true ) // Define the EMAs shortEma = ta.ema ( close , 10 ) longEma = ta.ema ( close , 20 ) // Plot the EMAs on the chart plot ( shortEma , color = color.blue , title = "10 EMA" ) plot ( longEma , color = color.red , title = "20 EMA" ) // Calculate the crossover conditions longCondition = ta.crossover ( shortEma , longEma )
Make a 10000 plus script trading Expert advisor with detail and make it flawless with no errors no tiny mistakes and make it in mql 5 language. Make it adjustable for it to be able to trade on its own and not be disturbed and make it study the chart and be able to trade any currency pair. I have zero experience and I would just like to copy and paste the code in MetaTrader. Can you make it be compatible with both
Need ea according to stochastic divergence (both hidden and regular) plus candlestick flip .. need for experinced developers to complete my order with 99percent accuracy. So bet for it the budged is fixed and other plugins will be added in the v2
looking for help to get my ibkr automated, i have strategies already built in composer and have JSON for them, i really just need to he setup and explanation on how to maintain it and add new strategies
// Define the properties input int ShortPeriod = 12; input int LongPeriod = 26; input double LotSize = 0.1; // OnTick function is called every time there is a price update void OnTick() { double shortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double longMA = iMA(NULL, 0, LongPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double prevShortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 1);
I need a AI signal generating bot for forex trading. The bot should operate such that when i put it in a chart it will analyse the market, after several minutes it will display whether the trade is buying or selling. It should display the one minute, five minute,15minute, 30 minute, one hour, 4 hours and daily time frame whether they are buying or selling. If it is buying the arrow should be green and if it is
An EA based on Fibonacci 100 - 300 USD
I am in need of 2 EA based on Fibonacci re-tracement after a high or low is made,each EA will have a hedge trade on it.the hedge trade will be at the 38 percent of the Fibonacci..this will be present on the 2 EA, the 2 EA will have different levels of re-tracement, while the hedge trade will be a continuation (buy/sell stop), while the re-tracement trades will be (buy/sell limit)This EA must work on timeframe ranging
DJANGO EA 30 - 1000 USD
I need smart, professional, and fast programmer for doing this project quickly, that have experience in EA with minimum 500 projects finish, and have good review and reputation from their client Share your link review, if you not qualified, dont apply! I will bidding the programmer from experience, review, reputation, price, and days working My EA using Moving Average, Average True Range, and using consecutives

Informações sobre o projeto

Orçamento
30+ USD
Desenvolvedor
27 USD