搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
//@version=5 indicator("Simple Moving Average Crossover", overla
INFOSYS LTD
//@version=5 indicator("Simple Moving Average Crossover", overla
由ashokaanjana706提供
關注
關注
2023年12月29日
0
//
version
=5
indicator("Simple Moving Average Crossover", overlay=true)
// Input for moving average length
length = input(14, title="Moving Average Length")
// Calculate SMAs
sma_short = sma(close, length)
sma_long = sma(close, 2 * length)
// Plot SMAs on the chart
plot(sma_short, color=color.blue, title="Short MA")
plot(sma_long, color=color.red, title="Long MA")
// Buy signal when short MA crosses above long MA
strategy.entry("Buy", strategy.long, when=crossover(sma_short, sma_long))
// Sell signal when short MA crosses below long MA
strategy.entry("Sell", strategy.short, when=crossunder(sma_short, sma_long))
Technical Indicators
ashokaanjana706
關注
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。