Advertisement
frentzy

QEMA TradingView

Dec 24th, 2020 (edited)
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. study(title="Dynamic Res/Sup", shorttitle="QEMA", overlay = true )
  2. Length = input(14, minval=1)
  3. Length2 = input(50, minval=1)
  4. Length3 = input(200, minval=1)
  5. Length4 = input(800, minval=1)
  6. xPrice = close
  7.  
  8. xEMA1 = ema(xPrice, Length)
  9. xEMA2 = ema(xPrice, Length2)
  10. xEMA3 = ema(xPrice, Length3)
  11. xEMA4 = ema(xPrice, Length4)
  12.  
  13. plot(xEMA1, color=blue, title="TEMA1")
  14. plot(xEMA2, color=aqua, title="TEMA1")
  15. plot(xEMA3, color=orange, title="TEMA1")
  16. plot(xEMA4, color=white, title="TEMA1")
  17.  
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement