Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // On Balance Volume: 2 (Primary)
- (low(obv(), 10) = low(obv(), 40)) and
- // Price Rate-of-Change Divergence - Stock Pds: 2 (Supporting Entry and Exit)
- (close <> low(close, 45) or proc(close, 5) = low(proc(close, 5), 45)) and
- // Stochastics %K Divergence - Stock Periods: 1 (Supporting Entry and Exit)
- (diverge(stochk(13, 4), mov(close, 3, simple), 3, 19) <> -1) and
- // Average True Range - Low Market (Supporting Entry)
- (sector($curexchange, atr(25)) < sector($curexchange, high(atr(25), 150)) * 0.9)
- ----------
- // On Balance Volume: 2 (Primary)
- (low(obv(), 10) <> low(obv(), 40)) or
- // Price Rate-of-Change Divergence - Stock Pds: 2 (Supporting Entry and Exit)
- (close = low(close, 45) and proc(close, 5) <> low(proc(close, 5), 45)) or
- // Stochastics %K Divergence - Stock Periods: 1 (Supporting Entry and Exit)
- (diverge(stochk(13, 4), mov(close, 3, simple), 3, 19) = -1)
Advertisement
Add Comment
Please, Sign In to add comment