Convert my tradingview indicator script into a MT4 EA or indicator

MQL4 変換

仕事が完了した

実行時間12 時間

指定

//@version=4
study("Custom", overlay = true)
//Var dec
length = 9
fractionalMult = input(title="Key Value", step=1, defval=1)

tr2() =>
max(high - low, max(abs(high - close[1]), abs(low - close[1])))

//Calc delta
calc1(in1, in2) =>
alpha = in2
sum = 0.0
sum := (in1 + (alpha - 1) * nz(sum[1])) / alpha

value1 = fractionalMult * calc1(tr2(), length)

sigShort = hl2 + value1
sigShortPrev = nz(sigShort[1], sigShort)
sigLong = hl2 - value1
sigLongPrev = nz(sigLong[1], sigLong)

sigLong := close[1] > sigLongPrev ? max(sigLong, sigLongPrev) : sigLong
sigShort := close[1] < sigShortPrev ? min(sigShort, sigShortPrev) : sigShort

dir = 1
dir := nz(dir[1], dir)
//Filter extreme moves
dir := dir == -1 and close > sigShortPrev ? 1 : dir == 1 and close < sigLongPrev ? -1 : dir

alertcondition( dir[1] == -1 and dir == 1 ? sigLong : na, "BUY", "BUY")
alertcondition(dir[1] == 1 and dir == -1 ? sigShort : na, "SELL", "SELL")

//plot
plotshape(dir == 1 and dir[1] == -1 ? sigLong : na, title="LONG", style=shape.labelup, location=location.belowbar, size=size.normal, text="LONG", textcolor = color.white, color=http://color.green)
plotshape(dir == -1 and dir[1] == 1 ? sigShort : na, title="SHORT", style=shape.labeldown, location=location.abovebar, size=size.normal, text="SHORT", textcolor = color.white, color=http://color.red)


応答済み

1
開発者 1
評価
(851)
プロジェクト
1464
72%
仲裁
122
29% / 48%
期限切れ
358
24%
仕事中
パブリッシュした人: 3 articles
2
開発者 2
評価
(337)
プロジェクト
624
38%
仲裁
40
23% / 65%
期限切れ
93
15%
パブリッシュした人: 4 articles, 19 codes
3
開発者 3
評価
(590)
プロジェクト
789
71%
仲裁
9
33% / 33%
期限切れ
22
3%
パブリッシュした人: 8 codes
4
開発者 4
評価
(4)
プロジェクト
4
0%
仲裁
5
0% / 80%
期限切れ
1
25%
5
開発者 5
評価
(647)
プロジェクト
1295
67%
仲裁
84
26% / 49%
期限切れ
338
26%

プロジェクト情報

予算
30+ USD
締め切り
最低 1 日