Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Negative Volume Index: 1 (Primary)
- (crossabove(nvi(), mov(nvi(), 26, simple))) and
- // Commodity Channel Index - Stock Periods: 2 (Supporting Entry and Exit)
- (cci(25) < -119) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // MACD - Stock Periods: 2 (Supporting Entry and Exit)
- (macd() < mov(macd(), 7, exponential)) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // Money Flow Index - Sector: 1 (Supporting Entry)
- (sector("RAS thingy", mfi(5)) < 70)
- ---------------
- // Negative Volume Index: 1 (Primary)
- (crossbelow(nvi(), mov(nvi(), 26, simple))) or
- // Commodity Channel Index - Stock Periods: 2 (Supporting Entry and Exit)
- (crossabove(ref(cci(25), -1), -119)) or
- // MACD - Stock Periods: 2 (Supporting Entry and Exit)
- (macd() > mov(macd(), 7, exponential))
Advertisement
Add Comment
Please, Sign In to add comment