搜索
产品
社区
市场
新闻
经纪商
更多
CN
开始
社区
/
观点
/
Doge
比特币
Doge
由nuttapard提供
关注
关注
10月18日
3
10月18日
//
version
=5
indicator("Simple Moving Average Strategy", overlay=true)
// Set the length for moving averages
short_ma_length = 9
long_ma_length = 21
// Calculate moving averages
short_ma = ta.sma(close, short_ma_length)
long_ma = ta.sma(close, long_ma_length)
// Plot the moving averages
plot(short_ma, color=color.blue, title="Short MA (9)")
plot(long_ma, color=color.red, title="Long MA (21)")
// Buy and Sell signals
buy_signal = ta.crossover(short_ma, long_ma)
sell_signal = ta.crossunder(short_ma, long_ma)
// Plot buy/sell signals on the chart
plotshape(buy_signal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sell_signal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
Technical Indicators
Trend Analysis
Wave Analysis
nuttapard
关注
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在
使用条款
阅读更多信息。