AnthonyAlexander

MA #3 ACAA

Jan 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // Stochastics %D Divergence: 1 (Primary)
  2. (diverge(stochd(5, 2, 7, simple), mov(close, 3, simple), 2, 17) = 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. // TRIX - Market: 2 (Supporting Entry)
  11. (sector($curexchange, trix(close, 7)) < sector($curexchange, mov(trix(close, 7), 45, simple)))
  12.  
  13. ----------
  14.  
  15. // macd 10 24 8 v2 (Primary)
  16. (// bband momentum 1.0 (Primary)
  17. ($daysheld <= 3
  18. ) and
  19.  
  20. // Long Stop Gain / Short Stop Loss (Supporting Exit)
  21. (close > $entryprice)) or
  22.  
  23. // Long Stop Gain / Short Stop Loss (Supporting Exit)
  24. (stopup(30))
Advertisement
Add Comment
Please, Sign In to add comment