Converting the "Trendillo" indicator from TradingView to MT5 indicator

MQL5 Indicadores Conversión

Trabajo finalizado

Plazo de ejecución 14 días
Comentario del Cliente
Very good developer! Fully recommend him. Me personally I will work with him in the future for sure.

Tarea técnica

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)

Han respondido

1
Desarrollador 1
Evaluación
(13)
Proyectos
21
24%
Arbitraje
1
100% / 0%
Caducado
3
14%
Libre
2
Desarrollador 2
Evaluación
(32)
Proyectos
57
23%
Arbitraje
12
67% / 8%
Caducado
2
4%
Libre
3
Desarrollador 3
Evaluación
(132)
Proyectos
178
39%
Arbitraje
4
25% / 50%
Caducado
14
8%
Libre
4
Desarrollador 4
Evaluación
(574)
Proyectos
945
47%
Arbitraje
309
58% / 27%
Caducado
125
13%
Libre

Información sobre el proyecto

Presupuesto
30+ USD