AnthonyAlexander

OPGN #5

Sep 8th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // Commodity Channel Index (Classic): 1 (Primary)
  2. (crossabove(cci(19), 80)) and
  3.  
  4. // MACD Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  5. (diverge(macd(), mov(close, 3, simple), 1, 19) <> -1)
  6.  
  7. -------------------
  8.  
  9. // Commodity Channel Index (Classic): 1 (Primary)
  10. (crossbelow(cci(19), 80)) or
  11.  
  12. // MACD Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  13. (diverge(macd(), mov(close, 3, simple), 1, 19) = -1)
Advertisement
Add Comment
Please, Sign In to add comment