AnthonyAlexander

RAS #3

Sep 8th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. // On Balance Volume Divergence: 1 (Primary)
  2. (close = low(close, 45) and obv() <> low(obv(), 45)) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Overbought/Oversold - Sector Periods: 1 (Supporting Entry and Exit)
  8. (mov(obos("RAS thingy"), 7, simple) > mov(obos("RAS thingy"), 90, simple)) and
  9.  
  10. // Minimum Liquidity Requirement (Supporting Entry)
  11. (mov(volume, 20, simple) * close >= 200000) and
  12.  
  13. // Price and Volume Trend Divergence - Market Pds: 1 (Supporting Entry and Exit)
  14. (sector($curexchange, close) <> sector($curexchange, high(close, 20)) or
  15. sector($curexchange, pvt()) = sector($curexchange, high(pvt(), 20)))
  16.  
  17. -------------
  18.  
  19. // On Balance Volume Divergence: 1 (Primary)
  20. (close = high(close, 45) and obv() <> high(obv(), 45)) or
  21.  
  22. // Overbought/Oversold - Sector Periods: 1 (Supporting Entry and Exit)
  23. (mov(obos("RAS thingy"), 7, simple) < mov(obos("RAS thingy"), 90, simple)) or
  24.  
  25. // Price and Volume Trend Divergence - Market Pds: 1 (Supporting Entry and Exit)
  26. (sector($curexchange, close) = sector($curexchange, high(close, 20)) and
  27. sector($curexchange, pvt()) <> sector($curexchange, high(pvt(), 20)))
Advertisement
Add Comment
Please, Sign In to add comment