fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. LHNPhuon
    3. Posts
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by LHNPhuon

    • RE: William %R cross EMA 13

      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 ?

      posted in Questions & Answers
      L
      LHNPhuon
    • RE: William %R cross EMA 13

      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

      posted in Questions & Answers
      L
      LHNPhuon
    • 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

      posted in Questions & Answers
      L
      LHNPhuon
    • 1 / 1