AnthonyAlexander

AVP #2

Sep 13th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Commodity Channel Index (Classic): 1 (Primary)
  2. (crossabove(cci(22), 120)) and
  3.  
  4. // Moving Average Crossover - Stock Periods: 2 (Supporting Entry and Exit)
  5. (mov(close, 8, simple) < mov(close, 45, simple)) and
  6.  
  7. // StrataSearch Volatility - Low Market (Supporting Entry)
  8. (sector($curexchange, svi(close, 10, 120)) < 8)
  9.  
  10. -------
  11.  
  12. // Commodity Channel Index (Classic): 1 (Primary)
  13. (crossbelow(cci(22), 120)) or
  14.  
  15. // Moving Average Crossover - Stock Periods: 2 (Supporting Entry and Exit)
  16. (mov(close, 8, simple) > mov(close, 45, simple))
Advertisement
Add Comment
Please, Sign In to add comment