I want someone who can automate my simple scalping strategy based on two moving averages

Lavoro terminato

Tempo di esecuzione 21 ore

Specifiche

I want someone who can turn my trading strategy in a bot.... To execute automated trades... Strategy is simply based on two moving averages, when they cross pass. Bot must be fully automated! 

Con risposta

1
Sviluppatore 1
Valutazioni
(188)
Progetti
307
15%
Arbitraggio
20
40% / 35%
In ritardo
15
5%
Occupato
2
Sviluppatore 2
Valutazioni
(454)
Progetti
513
33%
Arbitraggio
26
38% / 46%
In ritardo
7
1%
Caricato
3
Sviluppatore 3
Valutazioni
(91)
Progetti
113
36%
Arbitraggio
8
88% / 0%
In ritardo
0
In elaborazione
4
Sviluppatore 4
Valutazioni
(197)
Progetti
201
27%
Arbitraggio
0
In ritardo
3
1%
Gratuito
5
Sviluppatore 5
Valutazioni
(10)
Progetti
16
13%
Arbitraggio
1
0% / 100%
In ritardo
2
13%
In elaborazione
6
Sviluppatore 6
Valutazioni
(5)
Progetti
5
20%
Arbitraggio
0
In ritardo
1
20%
In elaborazione
7
Sviluppatore 7
Valutazioni
(16)
Progetti
17
12%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
8
Sviluppatore 8
Valutazioni
(13)
Progetti
21
0%
Arbitraggio
1
0% / 0%
In ritardo
0
In elaborazione
9
Sviluppatore 9
Valutazioni
(295)
Progetti
372
21%
Arbitraggio
43
60% / 23%
In ritardo
43
12%
Caricato
10
Sviluppatore 10
Valutazioni
(6)
Progetti
7
14%
Arbitraggio
0
In ritardo
1
14%
In elaborazione
11
Sviluppatore 11
Valutazioni
Progetti
0
0%
Arbitraggio
1
0% / 0%
In ritardo
0
Gratuito
12
Sviluppatore 12
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
13
Sviluppatore 13
Valutazioni
(253)
Progetti
408
38%
Arbitraggio
86
43% / 19%
In ritardo
70
17%
Caricato
14
Sviluppatore 14
Valutazioni
(17)
Progetti
23
39%
Arbitraggio
0
In ritardo
0
In elaborazione
15
Sviluppatore 15
Valutazioni
(51)
Progetti
58
52%
Arbitraggio
1
0% / 0%
In ritardo
0
Gratuito
16
Sviluppatore 16
Valutazioni
(15)
Progetti
19
11%
Arbitraggio
0
In ritardo
1
5%
Gratuito
17
Sviluppatore 17
Valutazioni
(2424)
Progetti
3048
66%
Arbitraggio
77
48% / 14%
In ritardo
340
11%
In elaborazione
18
Sviluppatore 18
Valutazioni
(1093)
Progetti
1773
61%
Arbitraggio
14
64% / 7%
In ritardo
84
5%
In elaborazione
19
Sviluppatore 19
Valutazioni
(58)
Progetti
178
71%
Arbitraggio
4
100% / 0%
In ritardo
1
1%
In elaborazione
20
Sviluppatore 20
Valutazioni
(149)
Progetti
238
60%
Arbitraggio
3
67% / 0%
In ritardo
6
3%
Gratuito
21
Sviluppatore 21
Valutazioni
Progetti
1
0%
Arbitraggio
0
In ritardo
0
In elaborazione
22
Sviluppatore 22
Valutazioni
(68)
Progetti
79
9%
Arbitraggio
33
9% / 55%
In ritardo
6
8%
Caricato
23
Sviluppatore 23
Valutazioni
(2082)
Progetti
2642
61%
Arbitraggio
113
45% / 26%
In ritardo
418
16%
In elaborazione
24
Sviluppatore 24
Valutazioni
(549)
Progetti
1331
59%
Arbitraggio
28
82% / 0%
In ritardo
10
1%
Gratuito
25
Sviluppatore 25
Valutazioni
(170)
Progetti
172
77%
Arbitraggio
2
100% / 0%
In ritardo
0
Gratuito
26
Sviluppatore 26
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
27
Sviluppatore 27
Valutazioni
(122)
Progetti
156
43%
Arbitraggio
21
57% / 19%
In ritardo
8
5%
In elaborazione
28
Sviluppatore 28
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
Ordini simili
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);
Hello Greetings. I have a custom tradingview strategy I would like to convert to Metatrader 5 ( mt5 ) . I have the source code a and with me. Kindly bid if it is what you can do for me and let discuss about the project. Thanks
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

Informazioni sul progetto

Budget
53+ USD
Per lo sviluppatore
47.7 USD
Scadenze
da 1 a 2 giorno(i)