AnthonyAlexander

ESV #2A

Sep 12th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. // Directional Movement: 1 (Primary)
  2. (crossabove(pdi(8), mdi(8))) and
  3.  
  4. // TRIX - Market Periods: 2 (Supporting Entry and Exit)
  5. (sector($curexchange, trix(close, 15)) < sector($curexchange, mov(trix(close, 15), 30, simple))) and
  6.  
  7. // Accumulation/Distribution - Sector Periods: 2 (Supporting Entry and Exit)
  8. (sector("ESV thingy", mov(ad(), 10, simple)) < sector("ESV thingy", ref(mov(ad(), 10, simple), -1)))
  9.  
  10. -------
  11.  
  12. // Directional Movement: 1 (Primary)
  13. (crossbelow(pdi(8), mdi(8))) or
  14.  
  15. // TRIX - Market Periods: 2 (Supporting Entry and Exit)
  16. (sector($curexchange, trix(close, 15)) > sector($curexchange, mov(trix(close, 15), 30, simple))) or
  17.  
  18. // Accumulation/Distribution - Sector Periods: 2 (Supporting Entry and Exit)
  19. (sector("ESV thingy", mov(ad(), 10, simple)) > sector("ESV thingy", ref(mov(ad(), 10, simple), -1)))
Advertisement
Add Comment
Please, Sign In to add comment