AnthonyAlexander

MA #9 BBAB

Jan 16th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // Stochastic Momentum Divergence: 1 (Primary)
  2. (diverge(smi(3, 8, 8), mov(close, 3, simple), 2, 19) = 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. // TEMA - Sector: 2 (Supporting Entry)
  11. (sector("MA", tema(close, 3)) < sector("MA", tema(close, 30)))
  12.  
  13. -----------
  14.  
  15. // Triple White Soilder (Primary)
  16. (increasing(1) close) or
  17.  
  18. // Hanging Man Exit (Supporting Exit)
  19. (HangingMan())
Advertisement
Add Comment
Please, Sign In to add comment