搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
Ali
美元指數
Ali
由ali91jassim提供
關注
關注
15 小時前
0
15 小時前
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
關注
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。