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

MQL5 Converting

Specification

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)



Responded

1
Developer 1
Rating
(378)
Projects
486
24%
Arbitration
59
54% / 25%
Overdue
55
11%
Loaded
2
Developer 2
Rating
(60)
Projects
87
29%
Arbitration
24
13% / 58%
Overdue
7
8%
Working
3
Developer 3
Rating
(2315)
Projects
2914
63%
Arbitration
124
44% / 25%
Overdue
429
15%
Loaded
4
Developer 4
Rating
(15)
Projects
19
16%
Arbitration
5
40% / 40%
Overdue
0
Free
5
Developer 5
Rating
(1)
Projects
0
0%
Arbitration
5
0% / 80%
Overdue
0
Free
6
Developer 6
Rating
(1289)
Projects
1716
49%
Arbitration
52
71% / 12%
Overdue
38
2%
Working
7
Developer 7
Rating
(43)
Projects
54
50%
Arbitration
6
83% / 0%
Overdue
1
2%
Working
8
Developer 8
Rating
(266)
Projects
598
35%
Arbitration
64
20% / 58%
Overdue
147
25%
Free
Published: 1 article, 22 codes
9
Developer 9
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
10
Developer 10
Rating
(2652)
Projects
3369
68%
Arbitration
77
48% / 14%
Overdue
342
10%
Free
Published: 1 code
11
Developer 11
Rating
(560)
Projects
648
33%
Arbitration
41
41% / 46%
Overdue
11
2%
Busy
12
Developer 12
Rating
(6)
Projects
5
0%
Arbitration
2
50% / 50%
Overdue
2
40%
Free
13
Developer 13
Rating
(101)
Projects
122
24%
Arbitration
21
29% / 52%
Overdue
8
7%
Working
14
Developer 14
Rating
(8)
Projects
9
22%
Arbitration
0
Overdue
0
Free
15
Developer 15
Rating
(187)
Projects
243
20%
Arbitration
22
50% / 18%
Overdue
0
Free
16
Developer 16
Rating
(444)
Projects
701
34%
Arbitration
34
71% / 9%
Overdue
22
3%
Free
17
Developer 17
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Working
18
Developer 18
Rating
(10)
Projects
14
43%
Arbitration
0
Overdue
3
21%
Free
19
Developer 19
Rating
(12)
Projects
16
13%
Arbitration
4
50% / 25%
Overdue
4
25%
Loaded
20
Developer 20
Rating
(7)
Projects
13
15%
Arbitration
13
23% / 46%
Overdue
3
23%
Free
Published: 24 articles
21
Developer 21
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
22
Developer 22
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
23
Developer 23
Rating
(271)
Projects
553
50%
Arbitration
57
40% / 37%
Overdue
227
41%
Working
24
Developer 24
Rating
(73)
Projects
257
53%
Arbitration
16
50% / 38%
Overdue
83
32%
Free
25
Developer 25
Rating
(2)
Projects
2
50%
Arbitration
0
Overdue
0
Free
26
Developer 26
Rating
(32)
Projects
33
61%
Arbitration
1
100% / 0%
Overdue
1
3%
Free
Published: 5 codes
27
Developer 27
Rating
(7)
Projects
8
0%
Arbitration
2
0% / 50%
Overdue
1
13%
Working
28
Developer 28
Rating
Projects
0
0%
Arbitration
1
0% / 100%
Overdue
0
Free
Published: 1 code
29
Developer 29
Rating
(55)
Projects
92
24%
Arbitration
8
75% / 13%
Overdue
44
48%
Free
30
Developer 30
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Working
31
Developer 31
Rating
(129)
Projects
168
39%
Arbitration
10
40% / 0%
Overdue
29
17%
Loaded
32
Developer 32
Rating
(511)
Projects
549
53%
Arbitration
13
69% / 15%
Overdue
3
1%
Free
33
Developer 33
Rating
(2)
Projects
5
0%
Arbitration
2
0% / 50%
Overdue
1
20%
Working

Project information

Budget
100 - 800 USD