Advertisement
Guest User

Bulkowsky NR7/NR4 pattern identifier [TradingView Script]

a guest
Jul 13th, 2014
10,363
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. study("NRx Identifier [LazyBear]", overlay=true)
  2. showNR7=input(true, type=bool)
  3. showNR4=input(true, type=bool)
  4. range=(high-low)
  5. nr7=(range < range[1]) and (range < range[2]) and (range < range[3]) and (range < range[4]) and (range < range[5]) and (range < range[6])
  6. nr4=(range < range[1]) and (range < range[2]) and (range < range[3])
  7. plotchar(showNR7?nr7:na, char="7", location=location.abovebar, color=blue)
  8. plotchar(showNR4?nr4:na, char="4", location=location.belowbar, color=blue)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement