Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Intraday Momentum Index: 1 (Primary)
- (crossabove(imi(22), 37)) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // TEMA - Stock: 2 (Supporting Entry)
- (tema(close, 7) < tema(close, 25))
- --------
- // Commodity Channel Index (Classic): 2 (Primary)
- (crossabove(cci(19), -99)) or
- // Maximum Days Held (Supporting Exit)
- ($daysheld > 3)
Advertisement
Add Comment
Please, Sign In to add comment