AnthonyAlexander

WLL #16

Sep 9th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // Price Rate-of-Change Divergence: 1 (Primary)
  2. (close = low(close, 70) and proc(close, 9) <> low(proc(close, 9), 70)) and
  3.  
  4. // Bollinger Bands - Stock Periods: 2 (Supporting Entry and Exit)
  5. (close > bbl(close, 10, 1.5))
  6.  
  7. -------------
  8.  
  9. // Price Rate-of-Change Divergence: 1 (Primary)
  10. (close = high(close, 70) and proc(close, 9) <> high(proc(close, 9), 70)) or
  11.  
  12. // Bollinger Bands - Stock Periods: 2 (Supporting Entry and Exit)
  13. (close < bbl(close, 10, 1.5))
Advertisement
Add Comment
Please, Sign In to add comment