Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Momentum Divergence: 1 (Primary)
- (close = low(close, 10) and mom(close, 11) <> low(mom(close, 11), 10)) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // Intraday Momentum Index - Market: 1 (Supporting Entry)
- (sector($curexchange, imi(25)) < 37)
- --------
- // Linear Regression Slope Prime (Primary)
- (close > $entryprice or
- $daysheld > 3)
Advertisement
Add Comment
Please, Sign In to add comment