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