Conversion of built-in indicator Stochastic RSI from Pine (Tradingview) to MQL4-indicator

MQL4 指标 转化中

工作已完成

执行时间17 小时
客户反馈
quick delivery as promised.

指定

Conversion of the built in indicator with exactly the same input parameters from Pine inTradingview to MQL4 for MT4. This indicator is going to be a part of an EA and as such I will need to be able to use and change the input parameters.

The code from Tradingview is freely available and looks like this:


//@version=3
study(title="Stochastic RSI", shorttitle="Stoch RSI")
smoothK = input(3, minval=1)
smoothD = input(3, minval=1)
lengthRSI = input(14, minval=1)
lengthStoch = input(14, minval=1)
src = input(close, title="RSI Source")

rsi1 = rsi(src, lengthRSI)
k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
d = sma(k, smoothD)
plot(k, color=blue)
plot(d, color=orange)
h0 = hline(80)
h1 = hline(20)
fill(h0, h1, color=purple, transp=80)


Most important is that the indicator will show the lines as defined above, and the 80-20 levels. The fill is not so important.

反馈

1
开发者 1
等级
(51)
项目
66
30%
仲裁
2
0% / 0%
逾期
0
空闲
2
开发者 2
等级
(337)
项目
624
38%
仲裁
40
23% / 65%
逾期
93
15%
空闲
发布者: 4 文章, 19 代码
3
开发者 3
等级
(253)
项目
358
49%
仲裁
24
25% / 50%
逾期
80
22%
空闲

项目信息

预算
30+ USD