Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // MACD Divergence: 1 (Primary)
- (diverge(macd(), mov(close, 3, simple), 6, 9) = 1) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // Aroon Crossover - Sector: 2 (Supporting Entry)
- (sector("MA", aroonu(5)) < sector("MA", aroond(5)))
- -----------
- // Triple White Soilder (Primary)
- (increasing(1) close)
Advertisement
Add Comment
Please, Sign In to add comment