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

MQL4 Indicatori In conversione

Lavoro terminato

Tempo di esecuzione 17 ore
Feedback del cliente
quick delivery as promised.

Specifiche

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.

Con risposta

1
Sviluppatore 1
Valutazioni
(51)
Progetti
66
30%
Arbitraggio
2
0% / 0%
In ritardo
0
Gratuito
2
Sviluppatore 2
Valutazioni
(337)
Progetti
624
38%
Arbitraggio
40
23% / 65%
In ritardo
93
15%
Gratuito
Pubblicati: 4 articoli, 19 codici
3
Sviluppatore 3
Valutazioni
(253)
Progetti
358
49%
Arbitraggio
24
25% / 50%
In ritardo
80
22%
Gratuito

Informazioni sul progetto

Budget
30+ USD