Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // On Balance Volume Divergence: 1 (Primary)
- (close = low(close, 45) and obv() <> low(obv(), 45)) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Overbought/Oversold - Sector Periods: 1 (Supporting Entry and Exit)
- (mov(obos("RAS thingy"), 7, simple) > mov(obos("RAS thingy"), 90, simple)) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // Price and Volume Trend Divergence - Market Pds: 1 (Supporting Entry and Exit)
- (sector($curexchange, close) <> sector($curexchange, high(close, 20)) or
- sector($curexchange, pvt()) = sector($curexchange, high(pvt(), 20)))
- -------------
- // On Balance Volume Divergence: 1 (Primary)
- (close = high(close, 45) and obv() <> high(obv(), 45)) or
- // Overbought/Oversold - Sector Periods: 1 (Supporting Entry and Exit)
- (mov(obos("RAS thingy"), 7, simple) < mov(obos("RAS thingy"), 90, simple)) or
- // Price and Volume Trend Divergence - Market Pds: 1 (Supporting Entry and Exit)
- (sector($curexchange, close) = sector($curexchange, high(close, 20)) and
- sector($curexchange, pvt()) <> sector($curexchange, high(pvt(), 20)))
Advertisement
Add Comment
Please, Sign In to add comment