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 ?
Posts made by LHNPhuon
-
RE: William %R cross EMA 13posted in Questions & Answers
-
RE: William %R cross EMA 13posted in Questions & Answers
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 -
William %R cross EMA 13posted in Questions & Answers
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