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
Évaluation
Projets
486
24%
Arbitrage
59
54%
/
25%
En retard
55
11%
Chargé
2
Évaluation
Projets
87
29%
Arbitrage
24
13%
/
58%
En retard
7
8%
Travail
3
Évaluation
Projets
2914
63%
Arbitrage
124
44%
/
25%
En retard
429
15%
Chargé
4
Évaluation
Projets
19
16%
Arbitrage
5
40%
/
40%
En retard
0
Gratuit
5
Évaluation
Projets
0
0%
Arbitrage
5
0%
/
80%
En retard
0
Gratuit
6
Évaluation
Projets
1716
49%
Arbitrage
52
71%
/
12%
En retard
38
2%
Travail
7
Évaluation
Projets
54
50%
Arbitrage
6
83%
/
0%
En retard
1
2%
Travail
8
Évaluation
Projets
598
35%
Arbitrage
64
20%
/
58%
En retard
147
25%
Gratuit
Publié : 1 article, 22 codes
9
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
10
Évaluation
Projets
3369
68%
Arbitrage
77
48%
/
14%
En retard
342
10%
Gratuit
Publié : 1 code
11
Évaluation
Projets
648
33%
Arbitrage
41
41%
/
46%
En retard
11
2%
Occupé
12
Évaluation
Projets
5
0%
Arbitrage
2
50%
/
50%
En retard
2
40%
Gratuit
13
Évaluation
Projets
122
24%
Arbitrage
21
29%
/
52%
En retard
8
7%
Travail
14
Évaluation
Projets
9
22%
Arbitrage
0
En retard
0
Gratuit
15
Évaluation
Projets
243
20%
Arbitrage
22
50%
/
18%
En retard
0
Travail
16
Évaluation
Projets
701
34%
Arbitrage
34
71%
/
9%
En retard
22
3%
Gratuit
17
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Travail
18
Évaluation
Projets
14
43%
Arbitrage
0
En retard
3
21%
Gratuit
19
Évaluation
Projets
16
13%
Arbitrage
4
50%
/
25%
En retard
4
25%
Chargé
20
Évaluation
Projets
13
15%
Arbitrage
13
23%
/
46%
En retard
3
23%
Gratuit
Publié : 24 articles
21
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
22
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
23
Évaluation
Projets
553
50%
Arbitrage
57
40%
/
37%
En retard
227
41%
Travail
24
Évaluation
Projets
257
53%
Arbitrage
16
50%
/
38%
En retard
83
32%
Gratuit
25
Évaluation
Projets
2
50%
Arbitrage
0
En retard
0
Gratuit
26
Évaluation
Projets
33
61%
Arbitrage
1
100%
/
0%
En retard
1
3%
Gratuit
Publié : 5 codes
27
Évaluation
Projets
8
0%
Arbitrage
2
0%
/
50%
En retard
1
13%
Travail
28
Évaluation
Projets
0
0%
Arbitrage
1
0%
/
100%
En retard
0
Gratuit
Publié : 1 code
29
Évaluation
Projets
92
24%
Arbitrage
8
75%
/
13%
En retard
44
48%
Gratuit
30
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Travail
31
Évaluation
Projets
168
39%
Arbitrage
10
40%
/
0%
En retard
29
17%
Chargé
32
Évaluation
Projets
549
53%
Arbitrage
13
69%
/
15%
En retard
3
1%
Gratuit
33
Évaluation
Projets
5
0%
Arbitrage
2
0%
/
50%
En retard
1
20%
Travail
Informations sur le projet
Budget
100 - 800 USD