Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. //@version=3
  2. //Made by Panda for fellow EU Master Race Premium
  3.  
  4. study("Rekt zones", overlay=true)
  5. plot(vwma(close, 1), transp= 100)
  6. L100=0.995117*vwma(close, 1)
  7. L50=0.985294*vwma(close, 1)
  8. L25=0.966235*vwma(close, 1)
  9. S100=1.004882*vwma(close, 1)
  10. S50=1.015117*vwma(close, 1)
  11. S25=1.036117*vwma(close, 1)
  12. plot(L100, style=circles, title="L100",color=yellow, linewidth=4)
  13. plot(L50, style=circles, title="L50", color=purple, linewidth=4)
  14. plot(L25, style=circles, title="L25", linewidth=4)
  15. plot(S100, style=circles, title="S100", color=yellow, linewidth=4)
  16. plot(S50, style=circles, title="S50",color=purple, linewidth=4)
  17. plot(S25, style=circles, title="S25", linewidth=4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement