Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // On Balance Volume Divergence: 1 (Primary)
- (close = low(close, 40) and obv() <> low(obv(), 40)) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Arms Index - Sector: 1 (Supporting Entry)
- (mov(arms("MA"), 35, simple) < 0.7) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000)
- ---------
- // macd 10 24 8 (Primary)
- (// bband momentum 1.0 (Primary)
- ($daysheld <= 3
- ) and
- // Long Stop Gain / Short Stop Loss (Supporting Exit)
- (close > $entryprice)) or
- // Evening Star Exit (Supporting Exit)
- (EveningStar())
Advertisement
Add Comment
Please, Sign In to add comment