AnthonyAlexander

ESV #8

Sep 10th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // Chande Momentum Divergence: 1 (Primary)
  2. (diverge(cmo(20), mov(close, 3, simple), 4, 13) = 1) and
  3.  
  4. // Linear Regression Indicator - Stock Periods: 2 (Supporting Entry and Exit)
  5. (close > lri(close, 15) * 0.98) and
  6.  
  7. // R-Squared - Market Periods (Supporting Entry and Exit)
  8. (sector($curexchange, rsq(close, 20)) > .20) and
  9.  
  10. // Stochastics %K - Stock: 1 (Supporting Entry)
  11. (stochk(7, 2) < 24)
  12.  
  13. -----------------
  14.  
  15. // Chande Momentum Divergence: 1 (Primary)
  16. (diverge(cmo(20), mov(close, 3, simple), 4, 13) = -1) or
  17.  
  18. // Linear Regression Indicator - Stock Periods: 2 (Supporting Entry and Exit)
  19. (close < lri(close, 15) * 0.98) or
  20.  
  21. // R-Squared - Market Periods (Supporting Entry and Exit)
  22. (sector($curexchange, rsq(close, 20)) < .20)
Advertisement
Add Comment
Please, Sign In to add comment