Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Price and Volume Trend: 2 (Primary)
- (crossbelow(pvt(), mov(pvt(), 20, simple))) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Dynamic Momentum Divergence - Stock Periods: 2 (Supporting Entry and Exit)
- (diverge(dmi(), mov(close, 3, simple), 3, 5) <> 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // Market Facilitation Index - Sector (Supporting Entry)
- (sector("TECL thingy", mov(mfidx(), 3, simple)) > sector("TECL thingy", ref(mov(mfidx(), 3, simple), -1)) and sector("TECL thingy", mov(volume, 3, simple)) > sector("TECL thingy", ref(mov(volume, 3, simple), -1)))
- ------------------------
- // Price and Volume Trend: 2 (Primary)
- (crossabove(pvt(), mov(pvt(), 20, simple))) or
- // Dynamic Momentum Divergence - Stock Periods: 2 (Supporting Entry and Exit)
- (diverge(dmi(), mov(close, 3, simple), 3, 5) = 1)
Advertisement
Add Comment
Please, Sign In to add comment