AnthonyAlexander

BW #3

Sep 11th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. // Commodity Channel Index: 2 (Primary)
  2. (crossbelow(cci(16), 80)) and
  3.  
  4. // Price Rate-of-Change Divergence - Market Pds: 2 (Supporting Entry and Exit)
  5. (sector($curexchange, close) <> sector($curexchange, low(close, 45)) or
  6. sector($curexchange, proc(close, 9)) = sector($curexchange, low(proc(close, 9), 45))) and
  7.  
  8. // Accumulation/Distribution - Sector Periods: 1 (Supporting Entry and Exit)
  9. (sector("BW thingy", mov(ad(), 5, simple)) > sector("BW thingy", ref(mov(ad(), 5, simple), -1)))
  10.  
  11. ---------
  12.  
  13. // Commodity Channel Index: 2 (Primary)
  14. (crossabove(cci(16), -79)) or
  15.  
  16. // Price Rate-of-Change Divergence - Market Pds: 2 (Supporting Entry and Exit)
  17. (sector($curexchange, close) = sector($curexchange, low(close, 45)) and
  18. sector($curexchange, proc(close, 9)) <> sector($curexchange, low(proc(close, 9), 45))) or
  19.  
  20. // Accumulation/Distribution - Sector Periods: 1 (Supporting Entry and Exit)
  21. (sector("BW thingy", mov(ad(), 5, simple)) < sector("BW thingy", ref(mov(ad(), 5, simple), -1)))
Advertisement
Add Comment
Please, Sign In to add comment