AnthonyAlexander

WLL #2A

Sep 12th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. // On Balance Volume: 2 (Primary)
  2. (low(obv(), 10) = low(obv(), 40)) and
  3.  
  4. // Price Rate-of-Change Divergence - Stock Pds: 2 (Supporting Entry and Exit)
  5. (close <> low(close, 45) or proc(close, 5) = low(proc(close, 5), 45)) and
  6.  
  7. // Stochastics %K Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  8. (diverge(stochk(13, 4), mov(close, 3, simple), 3, 19) <> -1) and
  9.  
  10. // Average True Range - Low Market (Supporting Entry)
  11. (sector($curexchange, atr(25)) < sector($curexchange, high(atr(25), 150)) * 0.9)
  12.  
  13. ----------
  14.  
  15. // On Balance Volume: 2 (Primary)
  16. (low(obv(), 10) <> low(obv(), 40)) or
  17.  
  18. // Price Rate-of-Change Divergence - Stock Pds: 2 (Supporting Entry and Exit)
  19. (close = low(close, 45) and proc(close, 5) <> low(proc(close, 5), 45)) or
  20.  
  21. // Stochastics %K Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  22. (diverge(stochk(13, 4), mov(close, 3, simple), 3, 19) = -1)
Advertisement
Add Comment
Please, Sign In to add comment