MAGAZ LUIZA ON NM, PETROBRAS PN N2, VIAVAREJO ON NM, BANCO INTER PN N2, VALE ON NM, ITAUSA PN N1
Petróleo Brent, Petróleo bruto, Ouro, Prata, Gás natural, Bitcoin
Títulos Americano de dez anos, Título Português de dez anos, Juros de Título Britânico de dez anos, Alemanha 10A, Japão Rendimento 10A, Títulos Europeus
This indicator, competes the signals of two of the most important and reliable indicators for monitoring price trends, the Squeeze Monitor and the RSI. For a better visualization of the relationship of the indicators with the price, the Squeeze Monitor is presented in colored bars that represent the trend of the indicator. The RSI is combined with the EMA of the...
//Programado por Ruben Jaramillo //rubend18@hotmail.com //WhatsApp +593 93 979 6676 //JUNTA DOS INDICADORES EN UNO study(title="RSI STOCH", shorttitle="RSI STOCH") //RSI(14,close) len = input(14, minval=1, title="RSI - Longitud") up = rma(max(change(close), 0), len) down = rma(-min(change(close), 0), len) rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 +...