Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Price and Volume Trend: 1 (Primary)
- (crossabove(pvt(), mov(pvt(), 15, simple))) and
- // TRIX Divergence - Stock Periods: 1 (Supporting Entry and Exit)
- (close <> high(close, 40) or trix(close, 11) = high(trix(close, 11), 40)) and
- // Accumulation/Distribution - Stock: 2 (Supporting Entry)
- (mov(ad(), 10, simple) < ref(mov(ad(), 10, simple), -1)) and
- // Commodity Channel Index - Market Periods: 2 (Supporting Entry and Exit)
- (sector($curexchange, cci(16)) > -99) and
- // Ease Of Movement - Market: 1 (Supporting Entry)
- (sector($curexchange, mov(eom(7), 5, simple)) > 0)
- ------------
- // Price and Volume Trend: 1 (Primary)
- (crossbelow(pvt(), mov(pvt(), 15, simple))) or
- // TRIX Divergence - Stock Periods: 1 (Supporting Entry and Exit)
- (close = high(close, 40) and trix(close, 11) <> high(trix(close, 11), 40)) or
- // Commodity Channel Index - Market Periods: 2 (Supporting Entry and Exit)
- (crossabove(sector($curexchange, ref(cci(16), -1)) , -99))
Advertisement
Add Comment
Please, Sign In to add comment