Pesquisar
Produtos
Comunidade
Mercados
Notícias
Corretoras
Mais
PT
Começar
Comunidade
/
Ideias
/
Ali
Índice Dólar
Ali
Por ali91jassim
Seguir
Seguir
há 16 horas
0
há 16 horas
pinescript
//
version
=5
indicator("Stochastic Oscillator", overlay=false)
kLength = input.int(14, title="K Length")
dSmoothing = input.int(3, title="D Smoothing")
kValue = ta.stoch(close, high, low, kLength)
dValue = ta.sma(kValue, dSmoothing)
plot(kValue, title="%K", color=color.blue, linewidth=2)
plot(dValue, title="%D", color=color.red, linewidth=2)
hline(80, "Overbought", color=color.green)
hline(20, "Oversold", color=color.red)
Trend Analysis
ali91jassim
Seguir
Aviso legal
As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em
Termos de uso
.