Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. //@version=2
  2. study("Range diária [tududu]")
  3. range=high-low
  4. rangediaria=security(tickerid, 'D', range)
  5.  
  6. bs = hline(2000)
  7. bi = hline(600)
  8. fill(bs,bi)
  9.  
  10. plot(rangediaria, color=yellow, linewidth=3, style=histogram)
  11. media=sma(rangediaria,50)
  12. plot(media, color=white, linewidth=3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement