Spezifikation
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)
Bewerbungen
1
Bewertung
Projekte
486
24%
Schlichtung
59
54%
/
25%
Frist nicht eingehalten
55
11%
Beschäftigt
2
Bewertung
Projekte
87
29%
Schlichtung
24
13%
/
58%
Frist nicht eingehalten
7
8%
Arbeitet
3
Bewertung
Projekte
2914
63%
Schlichtung
124
44%
/
25%
Frist nicht eingehalten
429
15%
Beschäftigt
4
Bewertung
Projekte
19
16%
Schlichtung
5
40%
/
40%
Frist nicht eingehalten
0
Frei
5
Bewertung
Projekte
0
0%
Schlichtung
5
0%
/
80%
Frist nicht eingehalten
0
Frei
6
Bewertung
Projekte
1715
49%
Schlichtung
52
71%
/
12%
Frist nicht eingehalten
38
2%
Arbeitet
7
Bewertung
Projekte
54
50%
Schlichtung
6
83%
/
0%
Frist nicht eingehalten
1
2%
Arbeitet
8
Bewertung
Projekte
598
35%
Schlichtung
64
20%
/
58%
Frist nicht eingehalten
147
25%
Frei
Veröffentlicht: 1 Artikel, 22 Beispiele
9
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
10
Bewertung
Projekte
3369
68%
Schlichtung
77
48%
/
14%
Frist nicht eingehalten
342
10%
Frei
Veröffentlicht: 1 Beispiel
11
Bewertung
Projekte
648
33%
Schlichtung
41
41%
/
46%
Frist nicht eingehalten
11
2%
Überlastet
12
Bewertung
Projekte
5
0%
Schlichtung
2
50%
/
50%
Frist nicht eingehalten
2
40%
Frei
13
Bewertung
Projekte
121
24%
Schlichtung
21
29%
/
52%
Frist nicht eingehalten
8
7%
Arbeitet
14
Bewertung
Projekte
9
22%
Schlichtung
0
Frist nicht eingehalten
0
Frei
15
Bewertung
Projekte
243
20%
Schlichtung
22
50%
/
18%
Frist nicht eingehalten
0
Frei
16
Bewertung
Projekte
701
34%
Schlichtung
34
71%
/
9%
Frist nicht eingehalten
22
3%
Frei
17
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Arbeitet
18
Bewertung
Projekte
14
43%
Schlichtung
0
Frist nicht eingehalten
3
21%
Frei
19
Bewertung
Projekte
16
13%
Schlichtung
4
50%
/
25%
Frist nicht eingehalten
4
25%
Beschäftigt
20
Bewertung
Projekte
13
15%
Schlichtung
13
23%
/
46%
Frist nicht eingehalten
3
23%
Frei
Veröffentlicht: 24 Artikel
21
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
22
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
23
Bewertung
Projekte
553
50%
Schlichtung
57
40%
/
37%
Frist nicht eingehalten
227
41%
Arbeitet
24
Bewertung
Projekte
257
53%
Schlichtung
16
50%
/
38%
Frist nicht eingehalten
83
32%
Frei
25
Bewertung
Projekte
2
50%
Schlichtung
0
Frist nicht eingehalten
0
Frei
26
Bewertung
Projekte
33
61%
Schlichtung
1
100%
/
0%
Frist nicht eingehalten
1
3%
Frei
Veröffentlicht: 5 Beispiele
27
Bewertung
Projekte
8
0%
Schlichtung
2
0%
/
50%
Frist nicht eingehalten
1
13%
Arbeitet
28
Bewertung
Projekte
0
0%
Schlichtung
1
0%
/
100%
Frist nicht eingehalten
0
Frei
Veröffentlicht: 1 Beispiel
Projektdetails
Budget
100 - 800 USD
Kunde
Veröffentlichte Aufträge1
Anzahl der Schlichtungen0