AnthonyAlexander

WLL #9

Sep 9th, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. // TEMA: 1 (Primary)
  2. (crossabove(tema(close, 3), tema(close, 60))) and
  3.  
  4. // Chande Momentum Oscillator - Market OB/OS: 1 (Supporting Entry)
  5. (sector($curexchange, cmo(8)) > sector($curexchange, mov(cmo(8), 20, simple))) and
  6.  
  7. // Dynamic Momentum Index - Market Periods: 2 (Supporting Entry and Exit)
  8. (sector($curexchange, dmi()) > 27) and
  9.  
  10. // Aroon Crossover - Sector: 1 (Supporting Entry)
  11. (sector("WLL thingy", aroonu(13)) > sector("WLL thingy", aroond(13))) and
  12.  
  13. // Price and Volume Trend Divergence - Sector Pds: 2 (Supporting Entry and Exit)
  14. (sector("WLL thingy", close) <> sector("WLL thingy", low(close, 20)) or
  15. sector("WLL thingy", pvt()) = sector("WLL thingy", low(pvt(), 20))) and
  16.  
  17. // Money Flow Index - Sector: 2 (Supporting Entry)
  18. (sector("WLL thingy", mfi(23)) > 35)
  19.  
  20. -------------------
  21.  
  22. // TEMA: 1 (Primary)
  23. (crossbelow(tema(close, 3), tema(close, 60))) or
  24.  
  25. // Dynamic Momentum Index - Market Periods: 2 (Supporting Entry and Exit)
  26. (sector($curexchange, dmi()) < 27) or
  27.  
  28. // Price and Volume Trend Divergence - Sector Pds: 2 (Supporting Entry and Exit)
  29. (sector("WLL thingy", close) = sector("WLL thingy", low(close, 20)) and
  30. sector("WLL thingy", pvt()) <> sector("WLL thingy", low(pvt(), 20)))
Advertisement
Add Comment
Please, Sign In to add comment