Converting the "Trendillo" indicator from TradingView to MT5 indicator

MQL5 Göstergeler Dönüştürme

İş tamamlandı

Tamamlanma süresi: 14 gün
Müşteri tarafından geri bildirim
Very good developer! Fully recommend him. Me personally I will work with him in the future for sure.

Şartname

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)

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(13)
Projeler
21
24%
Arabuluculuk
1
100% / 0%
Süresi dolmuş
3
14%
Serbest
2
Geliştirici 2
Derecelendirme
(32)
Projeler
57
23%
Arabuluculuk
12
67% / 8%
Süresi dolmuş
2
4%
Serbest
3
Geliştirici 3
Derecelendirme
(132)
Projeler
178
39%
Arabuluculuk
4
25% / 50%
Süresi dolmuş
14
8%
Serbest
4
Geliştirici 4
Derecelendirme
(574)
Projeler
945
47%
Arabuluculuk
309
58% / 27%
Süresi dolmuş
125
13%
Serbest

Proje bilgisi

Bütçe
30+ USD