AnthonyAlexander

SDRL #1

Sep 8th, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. // Projection Oscillator Divergence: 2 (Primary)
  2. (diverge(pjo(5), mov(close, 3, simple), 2, 9) = -1) and
  3.  
  4. // Chande Momentum Oscillator - Stock: 1 (Supporting Entry)
  5. (abs(cmo(14)) > 0) and
  6.  
  7. // Stochastics %K Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  8. (diverge(stochk(9, 4), mov(close, 3, simple), 0, 11) <> -1) and
  9.  
  10. // Intraday Momentum Divergence - Sector Periods: 1 (Supporting Entry and Exit)
  11. (sector("SDRL thingy", diverge(imi(25), mov(close, 3, simple), 1, 19)) <> -1)
  12.  
  13. ----------------------------
  14.  
  15. // Projection Oscillator Divergence: 2 (Primary)
  16. (diverge(pjo(5), mov(close, 3, simple), 2, 9) = 1) or
  17.  
  18. // Stochastics %K Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  19. (diverge(stochk(9, 4), mov(close, 3, simple), 0, 11) = -1) or
  20.  
  21. // Intraday Momentum Divergence - Sector Periods: 1 (Supporting Entry and Exit)
  22. (sector("SDRL thingy", diverge(imi(25), mov(close, 3, simple), 1, 19)) = -1)
Advertisement
Add Comment
Please, Sign In to add comment