AnthonyAlexander

CHK #2

Sep 11th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. // Momentum: 1 (Primary)
  2. (crossabove(mom(close, 5), mov(mom(close, 5), 11, exponential))) and
  3.  
  4. // Overbought/Oversold - Market: 1 (Supporting Entry)
  5. (mov(obos($curexchange), 3, simple) > mov(obos($curexchange), 90, simple)) and
  6.  
  7. // Relative Strength Index - Stock Periods: 1 (Supporting Entry and Exit)
  8. (rsi(12) < 40) and
  9.  
  10. // Envelopes - Market Periods: 1 (Supporting Entry and Exit)
  11. (sector($curexchange, close) < sector($curexchange, envu(20, 7, simple)))
  12.  
  13. --------
  14.  
  15. // Momentum: 1 (Primary)
  16. (crossbelow(mom(close, 5), mov(mom(close, 5), 11, exponential))) or
  17.  
  18. // Relative Strength Index - Stock Periods: 1 (Supporting Entry and Exit)
  19. (crossbelow(rsi(12), 58)) or
  20.  
  21. // Envelopes - Market Periods: 1 (Supporting Entry and Exit)
  22. (sector($curexchange, close) > sector($curexchange, envu(20, 7, simple)))
Advertisement
Add Comment
Please, Sign In to add comment