指定
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
評価
プロジェクト
1715
49%
仲裁
52
71%
/
12%
期限切れ
38
2%
仕事中
7
評価
プロジェクト
54
50%
仲裁
6
83%
/
0%
期限切れ
1
2%
仕事中
8
評価
プロジェクト
598
35%
仲裁
64
20%
/
58%
期限切れ
147
25%
暇
パブリッシュした人: 1 article, 22 codes
9
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
10
評価
プロジェクト
3369
68%
仲裁
77
48%
/
14%
期限切れ
342
10%
暇
パブリッシュした人: 1 code
11
評価
プロジェクト
648
33%
仲裁
41
41%
/
46%
期限切れ
11
2%
多忙
12
評価
プロジェクト
5
0%
仲裁
2
50%
/
50%
期限切れ
2
40%
暇
13
評価
プロジェクト
121
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 articles
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 codes
27
評価
プロジェクト
8
0%
仲裁
2
0%
/
50%
期限切れ
1
13%
仕事中
28
評価
プロジェクト
0
0%
仲裁
1
0%
/
100%
期限切れ
0
暇
パブリッシュした人: 1 code
プロジェクト情報
予算
100 - 800 USD
依頼者
出された注文1
裁定取引数0