AnthonyAlexander

MA #1 CAAC

Jan 16th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // DEMA: 2 (Primary)
  2. (crossbelow(dema(close, 7), dema(close, 33))) 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. // Dynamic Momentum Divergence - Sector: 2 (Supporting Entry)
  11. (sector("MA", diverge(dmi(), mov(close, 3, simple), 5, 3)) = -1)
  12.  
  13.  
  14. ----------
  15.  
  16.  
  17. // TRIX: 1 (Primary)
  18. (decreasing(trix(close, 15)))
Advertisement
Add Comment
Please, Sign In to add comment