AnthonyAlexander

DNR #2

Sep 11th, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. // Chande Momentum Oscillator - Crossover: 1 (Primary)
  2. (crossabove(cmo(8), mov(cmo(8), 11, simple))) and
  3.  
  4. // New Highs & New Lows - Market Periods: 1 (Supporting Entry and Exit)
  5. (increasing(mov(nh($curexchange) - nl($curexchange) + ref(nh($curexchange) - nl($curexchange), -1), 5, simple))) and
  6.  
  7. // Relative Momentum Index - Market: 2 (Supporting Entry)
  8. (sector($curexchange, rmi(10, 12)) > 68) and
  9.  
  10. // Stochastics %D - Sector Periods: 1 (Supporting Entry and Exit)
  11. (sector("DNR thingy", stochd(13, 5, 5, simple)) < 82)
  12.  
  13. ----------
  14.  
  15. // Chande Momentum Oscillator - Crossover: 1 (Primary)
  16. (crossbelow(cmo(8), mov(cmo(8), 11, simple))) or
  17.  
  18. // Stochastics %D - Sector Periods: 1 (Supporting Entry and Exit)
  19. (crossbelow(sector("DNR thingy", stochd(13, 5, 5, simple)), 82)) or
  20.  
  21. // New Highs & New Lows - Market Periods: 1 (Supporting Entry and Exit)
  22. (decreasing(mov(nh($curexchange) - nl($curexchange) + ref(nh($curexchange) - nl($curexchange), -1), 5, simple)))
Advertisement
Add Comment
Please, Sign In to add comment