AnthonyAlexander

MA #5 BABA

Jan 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. // Projection Oscillator Divergence: 2 (Primary)
  2. (diverge(pjo(8), mov(close, 3, simple), 0, 19) = -1) 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. // Relative Volatility Index - Stock: 2 (Supporting Entry)
  11. (rvi(18) < 57) and
  12.  
  13. // Intraday Momentum Index - Market: 1 (Supporting Entry)
  14. (sector($curexchange, imi(16)) < 31)
  15.  
  16. -------
  17.  
  18.  
  19. // bband momentum 1.0 (Primary)
  20. (// bband momentum 1.0 (Primary)
  21. ($daysheld <= 3
  22. ) and
  23.  
  24. // Long Stop Gain / Short Stop Loss (Supporting Exit)
  25. (close > $entryprice)) or
  26.  
  27. // Shooting Star Exit (Supporting Exit)
  28. (ShootingStar())
Advertisement
Add Comment
Please, Sign In to add comment