Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Commodity Channel Index (Classic): 1 (Primary)
- (crossabove(cci(22), 120)) and
- // Moving Average Crossover - Stock Periods: 2 (Supporting Entry and Exit)
- (mov(close, 8, simple) < mov(close, 45, simple)) and
- // StrataSearch Volatility - Low Market (Supporting Entry)
- (sector($curexchange, svi(close, 10, 120)) < 8)
- -------
- // Commodity Channel Index (Classic): 1 (Primary)
- (crossbelow(cci(22), 120)) or
- // Moving Average Crossover - Stock Periods: 2 (Supporting Entry and Exit)
- (mov(close, 8, simple) > mov(close, 45, simple))
Advertisement
Add Comment
Please, Sign In to add comment