AnthonyAlexander

MA #13 BAAA

Jan 16th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. // Momentum Divergence: 1 (Primary)
  2. (close = low(close, 10) and mom(close, 11) <> low(mom(close, 11), 10)) 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. // Intraday Momentum Index - Market: 1 (Supporting Entry)
  11. (sector($curexchange, imi(25)) < 37)
  12.  
  13. --------
  14.  
  15.  
  16. // Linear Regression Slope Prime (Primary)
  17. (close > $entryprice or
  18. $daysheld > 3)
Advertisement
Add Comment
Please, Sign In to add comment