명시
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)
응답함
1
등급
프로젝트
486
24%
중재
59
54%
/
25%
기한 초과
55
11%
로드됨
2
등급
프로젝트
87
29%
중재
24
13%
/
58%
기한 초과
7
8%
작업중
3
등급
프로젝트
2914
63%
중재
124
44%
/
25%
기한 초과
429
15%
로드됨
4
등급
프로젝트
19
16%
중재
5
40%
/
40%
기한 초과
0
무료
5
등급
프로젝트
0
0%
중재
5
0%
/
80%
기한 초과
0
무료
6
등급
프로젝트
1716
49%
중재
52
71%
/
12%
기한 초과
38
2%
작업중
7
등급
프로젝트
54
50%
중재
6
83%
/
0%
기한 초과
1
2%
작업중
8
등급
프로젝트
598
35%
중재
64
20%
/
58%
기한 초과
147
25%
무료
게재됨: 1 기고글, 22 코드
9
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
10
등급
프로젝트
3369
68%
중재
77
48%
/
14%
기한 초과
342
10%
무료
게재됨: 1 코드
11
등급
프로젝트
648
33%
중재
41
41%
/
46%
기한 초과
11
2%
바쁜
12
등급
프로젝트
5
0%
중재
2
50%
/
50%
기한 초과
2
40%
무료
13
등급
프로젝트
122
24%
중재
21
29%
/
52%
기한 초과
8
7%
작업중
14
등급
프로젝트
9
22%
중재
0
기한 초과
0
무료
15
등급
프로젝트
243
20%
중재
22
50%
/
18%
기한 초과
0
무료
16
등급
프로젝트
701
34%
중재
34
71%
/
9%
기한 초과
22
3%
무료
17
등급
프로젝트
0
0%
중재
0
기한 초과
0
작업중
18
등급
프로젝트
14
43%
중재
0
기한 초과
3
21%
무료
19
등급
프로젝트
16
13%
중재
4
50%
/
25%
기한 초과
4
25%
로드됨
20
등급
프로젝트
13
15%
중재
13
23%
/
46%
기한 초과
3
23%
무료
게재됨: 24 기고글
21
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
22
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
23
등급
프로젝트
553
50%
중재
57
40%
/
37%
기한 초과
227
41%
작업중
24
등급
프로젝트
257
53%
중재
16
50%
/
38%
기한 초과
83
32%
무료
25
등급
프로젝트
2
50%
중재
0
기한 초과
0
무료
26
등급
프로젝트
33
61%
중재
1
100%
/
0%
기한 초과
1
3%
무료
게재됨: 5 코드
27
등급
프로젝트
8
0%
중재
2
0%
/
50%
기한 초과
1
13%
작업중
28
등급
프로젝트
0
0%
중재
1
0%
/
100%
기한 초과
0
무료
게재됨: 1 코드
29
등급
프로젝트
92
24%
중재
8
75%
/
13%
기한 초과
44
48%
무료
30
등급
프로젝트
0
0%
중재
0
기한 초과
0
작업중
31
등급
프로젝트
168
39%
중재
10
40%
/
0%
기한 초과
29
17%
로드됨
32
등급
프로젝트
549
53%
중재
13
69%
/
15%
기한 초과
3
1%
무료
33
등급
프로젝트
5
0%
중재
2
0%
/
50%
기한 초과
1
20%
작업중
프로젝트 정보
예산
100 - 800 USD