Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Price Rate-of-Change Divergence: 1 (Primary)
- (close = low(close, 70) and proc(close, 9) <> low(proc(close, 9), 70)) and
- // Bollinger Bands - Stock Periods: 2 (Supporting Entry and Exit)
- (close > bbl(close, 10, 1.5))
- -------------
- // Price Rate-of-Change Divergence: 1 (Primary)
- (close = high(close, 70) and proc(close, 9) <> high(proc(close, 9), 70)) or
- // Bollinger Bands - Stock Periods: 2 (Supporting Entry and Exit)
- (close < bbl(close, 10, 1.5))
Advertisement
Add Comment
Please, Sign In to add comment