AnthonyAlexander

MA #19 BAAB

Jan 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // TRIX: 2 (Primary)
  2. (decreasing(trix(close, 9))) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Stochastic Momentum Divergence - Stock: 1 (Supporting Entry)
  8. (diverge(smi(11, 4, 4), mov(close, 3, simple), 3, 3) = 1) and
  9.  
  10. // Minimum Liquidity Requirement (Supporting Entry)
  11. (mov(volume, 20, simple) * close >= 200000) and
  12.  
  13. // TRIX - Market: 2 (Supporting Entry)
  14. (sector($curexchange, trix(close, 9)) < sector($curexchange, mov(trix(close, 9), 15, simple)))
  15.  
  16. --------
  17.  
  18.  
  19. // Linear Regression Slope Prime (Primary)
  20. (close > $entryprice or
  21. $daysheld > 3) or
  22.  
  23. // Parabolic SAR: Short Positions (Supporting Exit)
  24. (close > psar(0.02, 0.21))
Advertisement
Add Comment
Please, Sign In to add comment