AnthonyAlexander

MA #17 CCAA

Jan 16th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // Bollinger Bands: 1 (Primary)
  2. (close < bbl(close, 28, 0.5)) 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. // A/D Divergence - Sector: 1 (Supporting Entry)
  11. (sector("MA", diverge(ad(), close, 4, 7)) = 1)
  12.  
  13. ---------
  14.  
  15. // market crossover (Primary)
  16. (close > $entryprice or
  17. $daysheld > 3)
Advertisement
Add Comment
Please, Sign In to add comment