Advertisement
AnthonyAlexander

NE #1

Sep 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // Stochastic Momentum Divergence: 2 (Primary)
  2. (diverge(smi(15, 4, 4), mov(close, 3, simple), 8, 13) = -1) and
  3.  
  4. // Chaikin Money Flow - Market Periods: 1 (Supporting Entry and Exit)
  5. (sector($curexchange, cmf(20)) > 0) and
  6.  
  7. // Bollinger Bands - Sector Periods: 2 (Supporting Entry and Exit)
  8. (sector("NE thingy", close) > sector("NE thingy", bbl(close, 22, 0.5)))
  9.  
  10. -------
  11.  
  12. // Stochastic Momentum Divergence: 2 (Primary)
  13. (diverge(smi(15, 4, 4), mov(close, 3, simple), 8, 13) = 1) or
  14.  
  15. // Chaikin Money Flow - Market Periods: 1 (Supporting Entry and Exit)
  16. (sector($curexchange, cmf(20)) < 0) or
  17.  
  18. // Bollinger Bands - Sector Periods: 2 (Supporting Entry and Exit)
  19. (sector("NE thingy", close) < sector("NE thingy", bbl(close, 22, 0.5)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement