AnthonyAlexander

ESV #1

Sep 10th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. // Commodity Channel Index: 1 (Primary)
  2. (crossabove(cci(10), -119)) and
  3.  
  4. // Cumulative Volume Index - Sector Periods: 1 (Supporting Entry and Exit)
  5. (increasing(mov(cvi("ESV thingy"), 25, simple))) and
  6.  
  7. // Stochastics %D Divergence - Market Periods: 1 (Supporting Entry and Exit)
  8. (sector($curexchange, diverge(stochd(15, 1, 7, simple), mov(close, 3, simple), 1, 7)) <> -1)
  9.  
  10. ----------
  11.  
  12. // Commodity Channel Index: 1 (Primary)
  13. (crossbelow(cci(10), 120)) or
  14.  
  15. // Cumulative Volume Index - Sector Periods: 1 (Supporting Entry and Exit)
  16. (decreasing(mov(cvi("ESV thingy"), 25, simple))) or
  17.  
  18. // Stochastics %D Divergence - Market Periods: 1 (Supporting Entry and Exit)
  19. (sector($curexchange, diverge(stochd(15, 1, 7, simple), mov(close, 3, simple), 1, 7)) = -1)
Advertisement
Add Comment
Please, Sign In to add comment