AnthonyAlexander

MA #16 CAAA

Jan 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. // On Balance Volume Divergence: 1 (Primary)
  2. (close = low(close, 40) and obv() <> low(obv(), 40)) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Arms Index - Sector: 1 (Supporting Entry)
  8. (mov(arms("MA"), 35, simple) < 0.7) and
  9.  
  10. // Minimum Liquidity Requirement (Supporting Entry)
  11. (mov(volume, 20, simple) * close >= 200000)
  12.  
  13. ---------
  14.  
  15. // macd 10 24 8 (Primary)
  16. (// bband momentum 1.0 (Primary)
  17. ($daysheld <= 3
  18. ) and
  19.  
  20. // Long Stop Gain / Short Stop Loss (Supporting Exit)
  21. (close > $entryprice)) or
  22.  
  23. // Evening Star Exit (Supporting Exit)
  24. (EveningStar())
Advertisement
Add Comment
Please, Sign In to add comment