Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Momentum: 1 (Primary)
- (crossabove(mom(close, 5), mov(mom(close, 5), 11, exponential))) and
- // Overbought/Oversold - Market: 1 (Supporting Entry)
- (mov(obos($curexchange), 3, simple) > mov(obos($curexchange), 90, simple)) and
- // Relative Strength Index - Stock Periods: 1 (Supporting Entry and Exit)
- (rsi(12) < 40) and
- // Envelopes - Market Periods: 1 (Supporting Entry and Exit)
- (sector($curexchange, close) < sector($curexchange, envu(20, 7, simple)))
- --------
- // Momentum: 1 (Primary)
- (crossbelow(mom(close, 5), mov(mom(close, 5), 11, exponential))) or
- // Relative Strength Index - Stock Periods: 1 (Supporting Entry and Exit)
- (crossbelow(rsi(12), 58)) or
- // Envelopes - Market Periods: 1 (Supporting Entry and Exit)
- (sector($curexchange, close) > sector($curexchange, envu(20, 7, simple)))
Advertisement
Add Comment
Please, Sign In to add comment