AnthonyAlexander

RAS #2

Sep 8th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. // Negative Volume Index: 1 (Primary)
  2. (crossabove(nvi(), mov(nvi(), 26, simple))) and
  3.  
  4. // Commodity Channel Index - Stock Periods: 2 (Supporting Entry and Exit)
  5. (cci(25) < -119) and
  6.  
  7. // Minimum Price Requirement (Supporting Entry)
  8. (close > 1) and
  9.  
  10. // MACD - Stock Periods: 2 (Supporting Entry and Exit)
  11. (macd() < mov(macd(), 7, exponential)) and
  12.  
  13. // Minimum Liquidity Requirement (Supporting Entry)
  14. (mov(volume, 20, simple) * close >= 200000) and
  15.  
  16. // Money Flow Index - Sector: 1 (Supporting Entry)
  17. (sector("RAS thingy", mfi(5)) < 70)
  18.  
  19. ---------------
  20.  
  21. // Negative Volume Index: 1 (Primary)
  22. (crossbelow(nvi(), mov(nvi(), 26, simple))) or
  23.  
  24. // Commodity Channel Index - Stock Periods: 2 (Supporting Entry and Exit)
  25. (crossabove(ref(cci(25), -1), -119)) or
  26.  
  27. // MACD - Stock Periods: 2 (Supporting Entry and Exit)
  28. (macd() > mov(macd(), 7, exponential))
Advertisement
Add Comment
Please, Sign In to add comment