Need EA programmer to Make a trading robot based on pine script startegy

MQL5 In conversione

Specifiche

Need EA programmer to convert a pine script strategy to MQL5 and then make a code for trading robot based on it which can trade automatically on a 500usd  account on xauusd micro account, with entry and exit based on my strategy on variable timeframes especially10 sec, 30 sec, 45 sec, 1 min, 2 min, 45min ,6hr. The strategy has to be backtested on heikin ashi candles only with my rules on above listed timeframe. Break even and trailing stops modules to be added. will need support from beginning till live deployment.


//@version=5
strategy("CCI + KC + BB Combo Strategy", overlay=true,
     initial_capital=500,
     default_qty_type=strategy.fixed
     default_qty_value=0.01lot,
     commission_type=strategy.commission.percent,
     commission_value=0.01)

// ===== INPUTS =====
cciLength = input.int(100, "CCI Length")
cciMaLength = input.int(20, "CCI MA Length")

bbLength = input.int(20, "BB Length")
bbMult = input.float(2.0, "BB Multiplier")

kcLength = input.int(20, "KC Length")
kcMult = input.float(2.0, "KC Multiplier")

// ===== CCI =====
cci = ta.cci(hlc3, cciLength)
cciMA = ta.sma(cci, cciMaLength)

// ===== BOLLINGER BANDS =====
basis = ta.sma(close, bbLength)
dev = bbMult * ta.stdev(close, bbLength)
bbUpper = basis + dev
bbLower = basis - dev

// ===== KELTNER CHANNEL =====
emaKC = ta.ema(close, kcLength)
atrKC = ta.atr(kcLength)
kcUpper = emaKC + kcMult * atrKC
kcLower = emaKC - kcMult * atrKC

// ===== LONG CONDITIONS =====
longCond1 = ta.crossover(cci, cciMA)
longCond2 = kcUpper > bbUpper
longCond3 = ta.crossover(close, bbUpper)

longCondition = longCond1 and longCond2 and longCond3 and strategy.opentrades == 0

// ===== SHORT CONDITIONS =====
shortCond1 = ta.crossunder(cci, cciMA)
shortCond2 = kcLower < bbLower
shortCond3 = ta.crossunder(close, bbLower)

shortCondition = shortCond1 and shortCond2 and shortCond3 and strategy.opentrades == 0

// ===== ENTRIES =====
if longCondition
    strategy.entry("Long", strategy.long)
    label.new(bar_index, low, "🟢 Long", style=label.style_label_up, color=color.green)

if shortCondition
    strategy.entry("Short", strategy.short)
    label.new(bar_index, high, "🔴 Short", style=label.style_label_down, color=color.red, textcolor=color.white)

// ===== EXITS =====
exitLong = ta.crossunder(close, basis)
exitShort = ta.crossover(close, basis)

if exitLong
    strategy.close("Long")

if exitShort
    strategy.close("Short")

// ===== PLOTS =====
plot(bbUpper, "BB Upper", color=color.blue)
plot(bbLower, "BB Lower", color=color.blue)
plot(kcUpper, "KC Upper", color=color.orange)
plot(kcLower, "KC Lower", color=color.orange)

plot(cci, "CCI", color=color.green)
plot(cciMA, "CCI MA", color=color.red)



Con risposta

1
Sviluppatore 1
Valutazioni
(378)
Progetti
486
24%
Arbitraggio
59
54% / 25%
In ritardo
55
11%
Caricato
2
Sviluppatore 2
Valutazioni
(60)
Progetti
87
29%
Arbitraggio
24
13% / 58%
In ritardo
7
8%
In elaborazione
3
Sviluppatore 3
Valutazioni
(2315)
Progetti
2914
63%
Arbitraggio
124
44% / 25%
In ritardo
429
15%
Caricato
4
Sviluppatore 4
Valutazioni
(15)
Progetti
19
16%
Arbitraggio
5
40% / 40%
In ritardo
0
Gratuito
5
Sviluppatore 5
Valutazioni
(1)
Progetti
0
0%
Arbitraggio
5
0% / 80%
In ritardo
0
Gratuito
6
Sviluppatore 6
Valutazioni
(1289)
Progetti
1716
49%
Arbitraggio
52
71% / 12%
In ritardo
38
2%
In elaborazione
7
Sviluppatore 7
Valutazioni
(43)
Progetti
54
50%
Arbitraggio
6
83% / 0%
In ritardo
1
2%
In elaborazione
8
Sviluppatore 8
Valutazioni
(266)
Progetti
598
35%
Arbitraggio
64
20% / 58%
In ritardo
147
25%
Gratuito
Pubblicati: 1 articolo, 22 codici
9
Sviluppatore 9
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
10
Sviluppatore 10
Valutazioni
(2652)
Progetti
3369
68%
Arbitraggio
77
48% / 14%
In ritardo
342
10%
Gratuito
Pubblicati: 1 codice
11
Sviluppatore 11
Valutazioni
(560)
Progetti
648
33%
Arbitraggio
41
41% / 46%
In ritardo
11
2%
Occupato
12
Sviluppatore 12
Valutazioni
(6)
Progetti
5
0%
Arbitraggio
2
50% / 50%
In ritardo
2
40%
Gratuito
13
Sviluppatore 13
Valutazioni
(101)
Progetti
122
24%
Arbitraggio
21
29% / 52%
In ritardo
8
7%
In elaborazione
14
Sviluppatore 14
Valutazioni
(8)
Progetti
9
22%
Arbitraggio
0
In ritardo
0
Gratuito
15
Sviluppatore 15
Valutazioni
(187)
Progetti
243
20%
Arbitraggio
22
50% / 18%
In ritardo
0
Gratuito
16
Sviluppatore 16
Valutazioni
(444)
Progetti
701
34%
Arbitraggio
34
71% / 9%
In ritardo
22
3%
Gratuito
17
Sviluppatore 17
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
In elaborazione
18
Sviluppatore 18
Valutazioni
(10)
Progetti
14
43%
Arbitraggio
0
In ritardo
3
21%
Gratuito
19
Sviluppatore 19
Valutazioni
(12)
Progetti
16
13%
Arbitraggio
4
50% / 25%
In ritardo
4
25%
Caricato
20
Sviluppatore 20
Valutazioni
(7)
Progetti
13
15%
Arbitraggio
13
23% / 46%
In ritardo
3
23%
Gratuito
Pubblicati: 24 articoli
21
Sviluppatore 21
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
22
Sviluppatore 22
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
23
Sviluppatore 23
Valutazioni
(271)
Progetti
553
50%
Arbitraggio
57
40% / 37%
In ritardo
227
41%
In elaborazione
24
Sviluppatore 24
Valutazioni
(73)
Progetti
257
53%
Arbitraggio
16
50% / 38%
In ritardo
83
32%
Gratuito
25
Sviluppatore 25
Valutazioni
(2)
Progetti
2
50%
Arbitraggio
0
In ritardo
0
Gratuito
26
Sviluppatore 26
Valutazioni
(32)
Progetti
33
61%
Arbitraggio
1
100% / 0%
In ritardo
1
3%
Gratuito
Pubblicati: 5 codici
27
Sviluppatore 27
Valutazioni
(7)
Progetti
8
0%
Arbitraggio
2
0% / 50%
In ritardo
1
13%
In elaborazione
28
Sviluppatore 28
Valutazioni
Progetti
0
0%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
Pubblicati: 1 codice
29
Sviluppatore 29
Valutazioni
(55)
Progetti
92
24%
Arbitraggio
8
75% / 13%
In ritardo
44
48%
Gratuito
30
Sviluppatore 30
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
In elaborazione
31
Sviluppatore 31
Valutazioni
(129)
Progetti
168
39%
Arbitraggio
10
40% / 0%
In ritardo
29
17%
Caricato
32
Sviluppatore 32
Valutazioni
(511)
Progetti
549
53%
Arbitraggio
13
69% / 15%
In ritardo
3
1%
Gratuito
33
Sviluppatore 33
Valutazioni
(2)
Progetti
5
0%
Arbitraggio
2
0% / 50%
In ritardo
1
20%
In elaborazione

Informazioni sul progetto

Budget
100 - 800 USD