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