AnthonyAlexander

MA #8 ACAB

Jan 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // MACD Divergence: 1 (Primary)
  2. (diverge(macd(), mov(close, 3, simple), 6, 9) = 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. // Aroon Crossover - Sector: 2 (Supporting Entry)
  11. (sector("MA", aroonu(5)) < sector("MA", aroond(5)))
  12.  
  13. -----------
  14.  
  15. // Triple White Soilder (Primary)
  16. (increasing(1) close)
Advertisement
Add Comment
Please, Sign In to add comment