Converting the "Trendillo" indicator from TradingView to MT5 indicator

MQL5 インディケータ 変換

仕事が完了した

実行時間14 日
依頼者からのフィードバック
Very good developer! Fully recommend him. Me personally I will work with him in the future for sure.

指定

Hi developers,


I'm looking for somebody with experience in converting indicators from tradingview to MT5 to convert the following indicator. 

If the collaboration is successful we will work further in the creation of the EA which is going to contain this indicator as part of the logic. 


The code of the indicator is the following:


//@version=5

indicator('Trendilo', overlay=false)

src = input(close, title='Source')

smooth = input.int(1, title='Smoothing', minval=1)

length = input.int(50, title='Lookback', minval=1)

offset = input.float(0.85, title='ALMA Offset', step=0.01)

sigma = input.int(6, title='ALMA Sigma', minval=0)

bmult = input(1.0, 'Band Multiplier')

cblen = input(false, 'Custom Band Length ? (Else same as Lookback)')

blen = input(20, 'Custom Band Length')

highlight = input(true)

fill = input(true)

barcol = input(false, 'Bar Color')

pch = ta.change(src, smooth) / src * 100

avpch = ta.alma(pch, length, offset, sigma)

blength = cblen ? blen : length

rms = bmult * math.sqrt(math.sum(avpch * avpch, blength) / blength)

cdir = avpch > rms ? 1 : avpch < -rms ? -1 : 0

col = cdir == 1 ? color.lime : cdir == -1 ? color.red : color.gray

fplot = plot(avpch, color=highlight ? col : color.blue, linewidth=2)

posrms = plot(rms, color=color.new(color.purple, 0))

negrms = plot(-rms, color=color.new(color.purple, 0))

fill(fplot, posrms, color=fill and cdir > 0 ? col : na, transp=50)

fill(fplot, negrms, color=fill and cdir < 0 ? col : na, transp=50)

barcolor(color=barcol ? col : na)

hline(0)

応答済み

1
開発者 1
評価
(13)
プロジェクト
21
24%
仲裁
1
100% / 0%
期限切れ
3
14%
2
開発者 2
評価
(32)
プロジェクト
57
23%
仲裁
12
67% / 8%
期限切れ
2
4%
3
開発者 3
評価
(132)
プロジェクト
178
39%
仲裁
4
25% / 50%
期限切れ
14
8%
4
開発者 4
評価
(574)
プロジェクト
945
47%
仲裁
309
58% / 27%
期限切れ
125
13%

プロジェクト情報

予算
30+ USD