AnthonyAlexander

MA #18 BABA

Jan 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // Williams %R Divergence: 1 (Primary)
  2. (diverge(wlr(14), mov(close, 3, simple), 0, 7) = 1) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Overbought/Oversold - Sector: 1 (Supporting Entry)
  8. (mov(obos("MA"), 8, simple) > mov(obos("MA"), 90, simple)) and
  9.  
  10. // Minimum Liquidity Requirement (Supporting Entry)
  11. (mov(volume, 20, simple) * close >= 200000)
  12.  
  13. ---------
  14.  
  15. // Tema crossabove MA (Primary)
  16. (stopup(1, Unleveraged)) or
  17.  
  18. // Evening Star Exit (Supporting Exit)
  19. (EveningStar())
Advertisement
Add Comment
Please, Sign In to add comment