AnthonyAlexander

ESV #1A

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