// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © investimentos254 //@version=5 indicator('RSI', overlay=true) rsic(c) => //rsi custom r = ta.rsi(close[c], 9) r rsi_low(l) => //rsi minima v = rsic(1) < l and rsic(0) > rsic(1) and...