Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Chande Momentum Divergence: 1 (Primary)
- (diverge(cmo(20), mov(close, 3, simple), 4, 13) = 1) and
- // Linear Regression Indicator - Stock Periods: 2 (Supporting Entry and Exit)
- (close > lri(close, 15) * 0.98) and
- // R-Squared - Market Periods (Supporting Entry and Exit)
- (sector($curexchange, rsq(close, 20)) > .20) and
- // Stochastics %K - Stock: 1 (Supporting Entry)
- (stochk(7, 2) < 24)
- -----------------
- // Chande Momentum Divergence: 1 (Primary)
- (diverge(cmo(20), mov(close, 3, simple), 4, 13) = -1) or
- // Linear Regression Indicator - Stock Periods: 2 (Supporting Entry and Exit)
- (close < lri(close, 15) * 0.98) or
- // R-Squared - Market Periods (Supporting Entry and Exit)
- (sector($curexchange, rsq(close, 20)) < .20)
Advertisement
Add Comment
Please, Sign In to add comment