Convert from trandingview pine script to mql5

MQL5 지표 전환

작업 종료됨

실행 시간 19 시간
고객의 피드백
I am very satisfied with the work, I really liked the quickness and professionalism, the code was very well written and described, sincerely very happy with the result.
피고용인의 피드백
very good customer

명시

convert the next code to mql5 without error on execution, is a relative volatility index, but the parameters should be editables.

//@version=4

study(title="Relative Volatility Index - Flexible", shorttitle="RVI", format=format.price, precision=2, resolution="")

length = input(10, minval=1, title="STDDEV Period")

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

len = input(14, minval=1,  title="EMA Period")

stddev = stdev(src, length)

upper = ema(change(src) <= 0 ? 0 : stddev, len)

lower = ema(change(src) > 0 ? 0 : stddev, len)

rvi = upper / (upper + lower) * 100

h0 = hline(80, "Upper Band", color=#C0C0C0)

h1 = hline(20, "Lower Band", color=#C0C0C0)

h2 = hline(50, "Center Line", color=#C0C0C0)

fill(h0, h1, color=#996A15, title="Background")

offset = input(0, "Offset", type = input.integer, minval = -500, maxval = 500)

plot(rvi, title="RVI", color=#008000, offset = offset)

응답함

1
개발자 1
등급
(132)
프로젝트
178
39%
중재
4
25% / 50%
기한 초과
14
8%
무료
2
개발자 2
등급
(412)
프로젝트
543
75%
중재
9
44% / 0%
기한 초과
24
4%
무료

프로젝트 정보

예산
30+ USD