AnthonyAlexander

WLL #4

Sep 9th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. // TEMA: 1 (Primary)
  2. (crossabove(tema(close, 9), tema(close, 20))) and
  3.  
  4. // Negative Volume Index - Stock Periods: 2 (Supporting Entry and Exit)
  5. (nvi() < mov(nvi(), 44, simple)) and
  6.  
  7. // On Balance Volume - Market Periods: 1 (Supporting Entry and Exit)
  8. (sector($curexchange, high(obv(), 20)) = sector($curexchange, high(obv(), 60)))
  9.  
  10. -------------------
  11.  
  12. // TEMA: 1 (Primary)
  13. (crossbelow(tema(close, 9), tema(close, 20))) or
  14.  
  15. // Negative Volume Index - Stock Periods: 2 (Supporting Entry and Exit)
  16. (nvi() > mov(nvi(), 44, simple)) or
  17.  
  18. // On Balance Volume - Market Periods: 1 (Supporting Entry and Exit)
  19. (sector($curexchange, high(obv(), 20)) <> sector($curexchange, high(obv(), 60)))
Add Comment
Please, Sign In to add comment