Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Bollinger Bands: 1 (Primary)
- (close < bbl(close, 28, 0.5)) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // A/D Divergence - Sector: 1 (Supporting Entry)
- (sector("MA", diverge(ad(), close, 4, 7)) = 1)
- ---------
- // market crossover (Primary)
- (close > $entryprice or
- $daysheld > 3)
Advertisement
Add Comment
Please, Sign In to add comment