AnthonyAlexander

TECL #7

Sep 7th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. // Price and Volume Trend: 2 (Primary)
  2. (crossbelow(pvt(), mov(pvt(), 20, simple))) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Dynamic Momentum Divergence - Stock Periods: 2 (Supporting Entry and Exit)
  8. (diverge(dmi(), mov(close, 3, simple), 3, 5) <> 1) and
  9.  
  10. // Minimum Liquidity Requirement (Supporting Entry)
  11. (mov(volume, 20, simple) * close >= 200000) and
  12.  
  13. // Market Facilitation Index - Sector (Supporting Entry)
  14. (sector("TECL thingy", mov(mfidx(), 3, simple)) > sector("TECL thingy", ref(mov(mfidx(), 3, simple), -1)) and sector("TECL thingy", mov(volume, 3, simple)) > sector("TECL thingy", ref(mov(volume, 3, simple), -1)))
  15.  
  16. ------------------------
  17.  
  18. // Price and Volume Trend: 2 (Primary)
  19. (crossabove(pvt(), mov(pvt(), 20, simple))) or
  20.  
  21. // Dynamic Momentum Divergence - Stock Periods: 2 (Supporting Entry and Exit)
  22. (diverge(dmi(), mov(close, 3, simple), 3, 5) = 1)
Advertisement
Add Comment
Please, Sign In to add comment