搜索
产品
社区
市场
新闻
经纪商
更多
CN
开始
社区
/
观点
/
SIMPLE MAHACHAI
黄金现货/美元
SIMPLE MAHACHAI
由joyjuhtarat2001提供
关注
关注
9月30日
1
9月30日
//
version
=5
strategy("SMA Crossover Strategy", overlay=true)
// Define the length for the SMA
smaLength = input.int(50, title="SMA Length", minval=1)
// Calculate the SMA
smaValue = ta.sma(close, smaLength)
// Plot the SMA on the chart
plot(smaValue, title="SMA", color=color.blue, linewidth=2)
// Buy condition: Price crosses above the SMA
if (ta.crossover(close, smaValue))
strategy.entry("Buy", strategy.long)
// Sell condition: Price crosses below the SMA
if (ta.crossunder(close, smaValue))
strategy.close("Buy")
// Optional: plot buy and sell signals on the chart
plotshape(series=ta.crossover(close, smaValue), title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=ta.crossunder(close, smaValue), title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
Trend Analysis
joyjuhtarat2001
关注
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在
使用条款
阅读更多信息。