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

MQL5 Convertir

Spécifications

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)



Répondu

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

Informations sur le projet

Budget
100 - 800 USD