AnthonyAlexander

WLL #3

Sep 8th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. // Price and Volume Trend: 1 (Primary)
  2. (crossabove(pvt(), mov(pvt(), 15, simple))) and
  3.  
  4. // TRIX Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  5. (close <> high(close, 40) or trix(close, 11) = high(trix(close, 11), 40)) and
  6.  
  7. // Accumulation/Distribution - Stock: 2 (Supporting Entry)
  8. (mov(ad(), 10, simple) < ref(mov(ad(), 10, simple), -1)) and
  9.  
  10. // Commodity Channel Index - Market Periods: 2 (Supporting Entry and Exit)
  11. (sector($curexchange, cci(16)) > -99) and
  12.  
  13. // Ease Of Movement - Market: 1 (Supporting Entry)
  14. (sector($curexchange, mov(eom(7), 5, simple)) > 0)
  15. ------------
  16. // Price and Volume Trend: 1 (Primary)
  17. (crossbelow(pvt(), mov(pvt(), 15, simple))) or
  18.  
  19. // TRIX Divergence - Stock Periods: 1 (Supporting Entry and Exit)
  20. (close = high(close, 40) and trix(close, 11) <> high(trix(close, 11), 40)) or
  21.  
  22. // Commodity Channel Index - Market Periods: 2 (Supporting Entry and Exit)
  23. (crossabove(sector($curexchange, ref(cci(16), -1)) , -99))
Advertisement
Add Comment
Please, Sign In to add comment