William %R cross EMA 13
-
Hi everyone,
I am trying a strategy in which the buy/sell signal is when William %R cross EMA 13 (this indicator is William %R on Trading View)
Is there any way we can do this on fxdreema ? As I check on mt5, William %R does not have EMA line. Can we draw an EMA line overlap with William %R and check if they cross ?
Thanks and best regards -
@lhnphuon The only way I know is to get a custom indicator created.
-
Hello @jstap ,
I can find "pine script code" from tradingview
study(title="Williams %R", shorttitle="The Willy")// Williams %R
length = input(defval=21, minval=1)
upper = highest(length)
lower = lowest(length)output = 100 * (close - upper) / (upper - lower)
ema = ema(output, input(defval=13, title="EMA"))// Plot
h1 = hline(-20, title="Upper Band")
h2 = hline(-80, title="Lower Band")
fill(h1, h2, title="Background")plot(output, title="%R", color=yellow, linewidth=2)
plot(ema, title="EMA", color=aqua, linewidth=2)Can we import it to fxdreema ?
Thanks and best regards -
@lhnphuon I can't help with this, the code is similar but not the same, a coder possibly can but not sure who. If you can find what what this indicator does you can likely find a MT indicator that does the same, if you find what it does and add information here I'll have a look.
-
Hello jstap,
Thank you for your reply
I mangage to find this indicator "WPR_EMA" in mql4
I have successfully import it into fxdreema indicator. However, my EA on fxdreema is for mt5. Can I use that indicator "WPR_EMA" or I have to write EA code for mt5 ? -
@lhnphuon Again it's finding a coder, someone that can convert MT4 to MT5.