I need help solving this programming Riddle (RSI). @agaguilara, this is what you want_rsi = rsi(close, 14)enter_long = crossover(_rsi, 30)exit_long = crossover(_rsi, 70)enter_short = crossunder(_rsi, 70)exit_short = crossunder(_rsi, 30)strategy.entry(id="Buy it", long=true, qty=1.0, when=enter_long)strategy.exit(id="Sell it", fro... 799 Oct 06, 2019 at 02:29