AnthonyAlexander

WLL #8

Sep 9th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. // Stochastics Crossover: 1 (Primary)
  2. (crossabove(stochk(13, 1), stochd(13, 1, 3, simple))) and
  3.  
  4. // Price and Volume Trend Divergence - Market Pds: 1 (Supporting Entry and Exit)
  5. (sector($curexchange, close) <> sector($curexchange, high(close, 50)) or
  6. sector($curexchange, pvt()) = sector($curexchange, high(pvt(), 50))) and
  7.  
  8. // Stochastics %D Divergence - Market: 1 (Supporting Entry)
  9. (sector($curexchange, diverge(stochd(3, 4, 5, simple), mov(close, 3, simple), 7, 15)) = 1) and
  10.  
  11. // Price Rate-Of-Change - Sector Periods: 1 (Supporting Entry and Exit)
  12. (sector("WLL thingy", proc(close, 29)) < -5.75)
  13.  
  14. ----------
  15.  
  16. // Stochastics Crossover: 1 (Primary)
  17. (crossbelow(stochk(13, 1), stochd(13, 1, 3, simple))) or
  18.  
  19. // Price and Volume Trend Divergence - Market Pds: 1 (Supporting Entry and Exit)
  20. (sector($curexchange, close) = sector($curexchange, high(close, 50)) and
  21. sector($curexchange, pvt()) <> sector($curexchange, high(pvt(), 50))) or
  22.  
  23. // Price Rate-Of-Change - Sector Periods: 1 (Supporting Entry and Exit)
  24. (sector("WLL thingy", proc(close, 29)) < 4.75 and ref(sector("WLL thingy", proc(close, 29)), -1) >= 4.75)
Advertisement
Add Comment
Please, Sign In to add comment