Advertisement
AnthonyAlexander

ACHN #2

Sep 14th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. // Bollinger Bands: 2 (Primary)
  2. (close > bbl(close, 10, 1)) and
  3.  
  4. // Accumulation Swing Index - Sector Periods: 1 (Supporting Entry and Exit)
  5. (sector("ACHN thingy", asi(100)) > sector("ACHN thingy", mov(asi(100), 20, simple))) and
  6.  
  7. // Dynamic Momentum Divergence - Sector: 2 (Supporting Entry)
  8. (sector("ACHN thingy", diverge(dmi(), mov(close, 3, simple), 6, 17)) = -1)
  9.  
  10. -----
  11.  
  12. // Bollinger Bands: 2 (Primary)
  13. (close < bbl(close, 10, 1)) or
  14.  
  15. // Accumulation Swing Index - Sector Periods: 1 (Supporting Entry and Exit)
  16. (sector("ACHN thingy", asi(100)) < sector("ACHN thingy", mov(asi(100), 20, simple)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement