AnthonyAlexander

MA #15 BABB

Jan 16th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // Intraday Momentum Index: 1 (Primary)
  2. (crossabove(imi(22), 37)) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Minimum Liquidity Requirement (Supporting Entry)
  8. (mov(volume, 20, simple) * close >= 200000) and
  9.  
  10. // TEMA - Stock: 2 (Supporting Entry)
  11. (tema(close, 7) < tema(close, 25))
  12.  
  13. --------
  14.  
  15. // Commodity Channel Index (Classic): 2 (Primary)
  16. (crossabove(cci(19), -99)) or
  17.  
  18. // Maximum Days Held (Supporting Exit)
  19. ($daysheld > 3)
Advertisement
Add Comment
Please, Sign In to add comment