搜尋
產品
社群
市場
新聞
經紀商
更多
TW
Black Friday
高達70%折扣
社群
/
投資想法
/
Ok
黃金現貨 / 美元
Ok
由shelby_petroleum提供
關注
關注
2月7日
0
2月7日
//
version
=5
indicator("Simple SMA Crossover", overlay=true)
// Define the lengths for the short and long simple moving averages
shortLength = input(9, title="Short SMA Length")
longLength = input(21, title="Long SMA Length")
// Calculate the SMAs
shortSMA = ta.sma(close, shortLength)
longSMA = ta.sma(close, longLength)
// Plot the SMAs on the chart
plot(shortSMA, title="Short SMA", color=color.red)
plot(longSMA, title="Long SMA", color=color.blue)
// Generate buy and sell signals
buySignal = ta.crossover(shortSMA, longSMA)
sellSignal = ta.crossunder(shortSMA, longSMA)
// Plot buy and sell signals
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
Trend Analysis
shelby_petroleum
關注
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。